summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2015-08-28 14:46:16 +0200
committerWerner Koch <wk@gnupg.org>2015-08-28 14:47:32 +0200
commitcdb1e6484d6f094f8e795bfec5b314ec524a90f8 (patch)
treef0c3a7a17dc146acba105b566f93a0b33e8f0cba
parent6d4a8ee2a6c749eec70bd3ae804f21456e375727 (diff)
downloadlibassuan-2.3.0.tar.gz
Release 2.3.0libassuan-2.3.0
* configure.ac: Set LT version to C6/A6/R0. Signed-off-by: Werner Koch <wk@gnupg.org>
-rw-r--r--AUTHORS2
-rw-r--r--NEWS16
-rw-r--r--README2
-rw-r--r--configure.ac6
-rw-r--r--doc/assuan.texi3
-rw-r--r--src/assuan.h.in2
-rw-r--r--src/versioninfo.rc.in2
7 files changed, 23 insertions, 10 deletions
diff --git a/AUTHORS b/AUTHORS
index 2219f35..ccad0cb 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -55,7 +55,7 @@ List of Copyright holders
Copyright (C) 1992-2013 Free Software Foundation, Inc.
Copyright (C) 1994 X Consortium
Copyright (C) 2000 Werner Koch (dd9jn)
- Copyright (C) 2001-2014 g10 Code GmbH
+ Copyright (C) 2001-2015 g10 Code GmbH
Copyright (C) 2004 Simon Josefsson
diff --git a/NEWS b/NEWS
index a851b6a..5488a4e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,19 @@
-Noteworthy changes in version 2.3.0 (unreleased) [C5/A5/R_]
+Noteworthy changes in version 2.3.0 (2015-08-28) [C6/A6/R0]
------------------------------------------------
- * Support Cygwin's local sockets.
+ * Now wipes out the memory of the context structure before freeing.
+ The context may have stored sensitive data in its line buffers.
+
+ * Fixed a problem with the data length limit in assuan_inquire.
+
+ * Returns GPG_ERR_SOURCE_ASSUAN with errors from functions w/o a
+ context.
+
+ * Two new functions to tweak the behaviour of the socket wrappers.
+
+ * Experimental code to support Cygwin's local sockets.
+
+ * By default build without a build timestamp.
* Interface changes relative to the 2.2.1 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/README b/README
index defb427..6867dc3 100644
--- a/README
+++ b/README
@@ -2,7 +2,7 @@
===========
Copyright (C) 2001-2013 Free Software Foundation, Inc.
- Copyright (C) 2001-2014 g10 Code GmbH
+ Copyright (C) 2001-2015 g10 Code GmbH
This is a general purpose IPC library which is for example used
diff --git a/configure.ac b/configure.ac
index 68f6ea7..08a022a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -59,9 +59,9 @@ AC_INIT([mym4_package],[mym4_version], [http://bugs.gnupg.org])
# (Interfaces added: AGE++)
# (Interfaces removed/changed: AGE=0)
#
-LIBASSUAN_LT_CURRENT=5
-LIBASSUAN_LT_AGE=5
-LIBASSUAN_LT_REVISION=1
+LIBASSUAN_LT_CURRENT=6
+LIBASSUAN_LT_AGE=6
+LIBASSUAN_LT_REVISION=0
# If the API is changed in an incompatible way: increment the next counter.
LIBASSUAN_CONFIG_API_VERSION=2
diff --git a/doc/assuan.texi b/doc/assuan.texi
index 0a49d71..c822190 100644
--- a/doc/assuan.texi
+++ b/doc/assuan.texi
@@ -3,7 +3,8 @@
@setfilename assuan.info
@macro copyrightnotice
-Copyright @copyright{} 2002, 2003, 2006, 2007, 2011 Free Software Foundation, Inc.
+Copyright @copyright{} 2001--2013 Free Software Foundation, Inc. @*
+Copyright @copyright{} 2001--2015 g10 Code GmbH
@end macro
@macro permissionnotice
Permission is granted to copy, distribute and/or modify this document
diff --git a/src/assuan.h.in b/src/assuan.h.in
index 14255ea..b26fa3b 100644
--- a/src/assuan.h.in
+++ b/src/assuan.h.in
@@ -1,6 +1,6 @@
/* assuan.h - Definitions for the Assuan IPC library -*- c -*-
Copyright (C) 2001-2013 Free Software Foundation, Inc.
- Copyright (C) 2001-2014 g10 Code GmbH
+ Copyright (C) 2001-2015 g10 Code GmbH
This file is part of Assuan.
diff --git a/src/versioninfo.rc.in b/src/versioninfo.rc.in
index 5c0960c..23db15e 100644
--- a/src/versioninfo.rc.in
+++ b/src/versioninfo.rc.in
@@ -39,7 +39,7 @@ BEGIN
VALUE "FileDescription", "Assuan - GnuPG IPC\0"
VALUE "FileVersion", "@LIBASSUAN_LT_CURRENT@.@LIBASSUAN_LT_AGE@.@LIBASSUAN_LT_REVISION@.@BUILD_REVISION@\0"
VALUE "InternalName", "libassuan\0"
- VALUE "LegalCopyright", "Copyright © 2001-2014 g10 Code GmbH\0"
+ VALUE "LegalCopyright", "Copyright © 2001-2015 g10 Code GmbH\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "libassuan.dll\0"
VALUE "PrivateBuild", "\0"