summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2020-12-21 10:46:45 +0100
committerWerner Koch <wk@gnupg.org>2020-12-21 10:46:45 +0100
commitc1f4ed561e9d214be9fdc3005134b9d0ed87554f (patch)
tree83e72e965b182ec900ef3f02c57a72dcffdcbb41
parent62df5d295200b4353182a94ea40c209d211592ae (diff)
downloadlibgpg-error-c1f4ed561e9d214be9fdc3005134b9d0ed87554f.tar.gz
* configure.ac: Bump LT version to C31/A31/R0.
-rw-r--r--NEWS12
-rw-r--r--configure.ac4
-rw-r--r--src/sysutils.c3
3 files changed, 15 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 531994e..88e5276 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,21 @@
-Noteworthy changes in version 1.40 (unreleased) [C30/A30/R1]
+Noteworthy changes in version 1.40 (2020-12-21) [C31/A31/R0]
-----------------------------------------------
+ * New function gpgrt_access.
+
+ * Make "ignore" meta command work correctly in the option parser.
+
+ * On Windows gpgrt_getcwd and the internal getusername now handle
+ Unicode values. [#5098]
+
+ * Update the build system.
* Interface changes relative to the 1.39 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gpgrt_access NEW.
+ Release-info: https://dev.gnupg.org/T5191
+
Noteworthy changes in version 1.39 (2020-08-24) [C30/A30/R0]
-----------------------------------------------
diff --git a/configure.ac b/configure.ac
index f94900d..10332ef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -49,8 +49,8 @@ AC_INIT([mym4_package],[mym4_version],[https://bugs.gnupg.org])
# (Interfaces added: AGE++)
# (Interfaces removed: AGE=0)
# Note that added error codes don't constitute an interface change.
-LIBGPG_ERROR_LT_CURRENT=30
-LIBGPG_ERROR_LT_AGE=30
+LIBGPG_ERROR_LT_CURRENT=31
+LIBGPG_ERROR_LT_AGE=31
LIBGPG_ERROR_LT_REVISION=0
################################################
diff --git a/src/sysutils.c b/src/sysutils.c
index ebd587c..8f70a66 100644
--- a/src/sysutils.c
+++ b/src/sysutils.c
@@ -409,7 +409,8 @@ _gpgrt_getcwd (void)
/* Wrapper around access to handle file name encoding under Windows.
- * Returns 0 if FNAME can be accessed in MODE or an error code. */
+ * Returns 0 if FNAME can be accessed in MODE or an error code. ERRNO
+ * is also set on error. */
gpg_err_code_t
_gpgrt_access (const char *fname, int mode)
{