From: Werner Koch Date: Tue, 15 Oct 2002 10:00:49 +0000 (+0000) Subject: * configure.ac: Bump up LIBGPGME_LT_REVISION. X-Git-Tag: gpgme-1.2.0@1385~789 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0b9498de2dc1406155408e06e0907cbb1d3dbca2;p=gpgme.git * configure.ac: Bump up LIBGPGME_LT_REVISION. (NEED_GPG_VERSION): Set to 1.2.0 (NEED_GPGSM_VERSION): Set to 0.9.2 --- diff --git a/branches/gpgme-0-3-branch/ChangeLog b/branches/gpgme-0-3-branch/ChangeLog index 3311f8c..d843c09 100644 --- a/branches/gpgme-0-3-branch/ChangeLog +++ b/branches/gpgme-0-3-branch/ChangeLog @@ -1,3 +1,11 @@ +2002-10-15 Werner Koch + + Released 0.3.12 + + * configure.ac: Bump up LIBGPGME_LT_REVISION. + (NEED_GPG_VERSION): Set to 1.2.0 + (NEED_GPGSM_VERSION): Set to 0.9.2 + 2002-09-20 Werner Koch Released 0.3.11. diff --git a/branches/gpgme-0-3-branch/NEWS b/branches/gpgme-0-3-branch/NEWS index 2646937..715e83f 100644 --- a/branches/gpgme-0-3-branch/NEWS +++ b/branches/gpgme-0-3-branch/NEWS @@ -1,6 +1,11 @@ -Noteworthy changes in version 0.3.12 (unreleased) +Noteworthy changes in version 0.3.12 (2002-10-15) ------------------------------------------------- + * Fixed some bux with key listsings. + + * The development has been branched to clean up some API issues. + This 0.3 series will be kept for compatibility reasons; so do don't + expect new features. Noteworthy changes in version 0.3.11 (2002-09-20) ------------------------------------------------- diff --git a/branches/gpgme-0-3-branch/README b/branches/gpgme-0-3-branch/README index 37327a4..50e0565 100644 --- a/branches/gpgme-0-3-branch/README +++ b/branches/gpgme-0-3-branch/README @@ -6,19 +6,14 @@ If you want to hack on it, start with one of the `tests/gpg/t-foo' programs. -For support of the OpenPGP protocol (default), you need the latest CVS -version of GnuPG 1.0, see `http://www.gnupg.org/cvs-access.html'. - -You need at least GnuPG 1.0.7, but don't use a 1.1.x version. +For support of the OpenPGP protocol (default), you need at least GnuPG +1.2.0. If configure can't find the `gpg' binary in your path, you can specify the location with the --with-gpg=/path/to/gpg argument to configure. For support of the CMS (Cryptographic Message Syntax) protocol, you -need the latest CVS version of GpgSM, module name `newpg', at -`:pserver:anoncvs@cvs.gnupg.org:/cvs/aegypten'. - -You need at least GpgSM 0.3.8. +need at least newpg 0.9.2 If configure can't find the `gpgsm' binary in your path, you can specify the location with the --with-gpgsm=/path/to/gpgsm argument to diff --git a/branches/gpgme-0-3-branch/TODO b/branches/gpgme-0-3-branch/TODO index 2ece7e9..d0e6105 100644 --- a/branches/gpgme-0-3-branch/TODO +++ b/branches/gpgme-0-3-branch/TODO @@ -68,9 +68,6 @@ Hey Emacs, this is -*- outline -*- mode! ** Make sure everything is cleaned correctly (esp. test area). Bugs reported by Stephane Corthesy: -> BTW, here's another bug: it it not possible to retrieve fingerprints -> for subkeys ---> This seems to work now (wk 2002-08-20) > In GpgmeRecipients, would it be possible to provide a function which > would return the validity assigned to a name contained in the diff --git a/branches/gpgme-0-3-branch/configure.ac b/branches/gpgme-0-3-branch/configure.ac index 0e2bc45..9990099 100644 --- a/branches/gpgme-0-3-branch/configure.ac +++ b/branches/gpgme-0-3-branch/configure.ac @@ -30,9 +30,9 @@ AC_INIT(gpgme, 0.3.12, [bug-gpgme@gnupg.org]) # LIBGPGME_LT_CURRENT=9 LIBGPGME_LT_AGE=3 -LIBGPGME_LT_REVISION=2 -NEED_GPG_VERSION=1.0.7 -NEED_GPGSM_VERSION=0.3.8 +LIBGPGME_LT_REVISION=3 +NEED_GPG_VERSION=1.2.0 +NEED_GPGSM_VERSION=0.9.2 ############################################## AC_PREREQ(2.52) AC_REVISION($Revision$)