diff options
author | Werner Koch <[email protected]> | 2002-10-15 10:00:49 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-10-15 10:00:49 +0000 |
commit | d7474c408999c049011089ae6450f86888e7d227 (patch) | |
tree | d7d85c27dde6ad118932314f37d4894babe5df12 | |
parent | This commit was manufactured by cvs2svn to create branch (diff) | |
download | gpgme-d7474c408999c049011089ae6450f86888e7d227.tar.gz gpgme-d7474c408999c049011089ae6450f86888e7d227.zip |
* configure.ac: Bump up LIBGPGME_LT_REVISION.
(NEED_GPG_VERSION): Set to 1.2.0
(NEED_GPGSM_VERSION): Set to 0.9.2
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | README | 11 | ||||
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | configure.ac | 6 |
5 files changed, 20 insertions, 15 deletions
@@ -1,3 +1,11 @@ +2002-10-15 Werner Koch <[email protected]> + + 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 <[email protected]> Released 0.3.11. @@ -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) ------------------------------------------------- @@ -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:[email protected]:/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 @@ -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/configure.ac b/configure.ac index 0e2bc451..99900996 100644 --- a/configure.ac +++ b/configure.ac @@ -30,9 +30,9 @@ AC_INIT(gpgme, 0.3.12, [[email protected]]) # 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$) |