aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2002-10-15 10:00:49 +0000
committerWerner Koch <[email protected]>2002-10-15 10:00:49 +0000
commitd7474c408999c049011089ae6450f86888e7d227 (patch)
treed7d85c27dde6ad118932314f37d4894babe5df12
parentThis commit was manufactured by cvs2svn to create branch (diff)
downloadgpgme-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--ChangeLog8
-rw-r--r--NEWS7
-rw-r--r--README11
-rw-r--r--TODO3
-rw-r--r--configure.ac6
5 files changed, 20 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 3311f8c5..d843c09d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/NEWS b/NEWS
index 2646937a..715e83f4 100644
--- a/NEWS
+++ b/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/README b/README
index 37327a40..50e0565d 100644
--- a/README
+++ b/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:[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
diff --git a/TODO b/TODO
index 2ece7e91..d0e6105d 100644
--- a/TODO
+++ b/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/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$)