summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS21
-rw-r--r--configure.ac6
-rw-r--r--doc/Makefile.am2
3 files changed, 23 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 5804819..c11e154 100644
--- a/NEWS
+++ b/NEWS
@@ -1,14 +1,31 @@
-Noteworthy changes in version 1.33 (unreleased) [C24/A24/R_]
+Noteworthy changes in version 1.33 (2018-12-07) [C25/A25/R0]
-----------------------------------------------
+ * New unified config script gpgrt-config which can now be used by all
+ GnuPG related packages.
+
+ * Support for ARC and arm64ilp32.
+
+ * The log functions now sanitize strings printed with the "%s" format
+ specifier. All control characters are C-escaped in the output.
+ Users of that function may want to remove their own escaping to
+ avoid doubling of backslashes.
+
+ * New fprintf style function to apply a custom filter for string
+ arguments.
+
+ * New function to compare version strings.
* Interface changes relative to the 1.28 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gpgrt_cmp_version New.
- gpgrt_ftruncate New but limited functionality.
gpgrt_string_filter_t New.
gpgrt_fprintf_sf New.
gpgrt_fprintf_sf_unlocked New.
+ gpgrt_ftruncate New but limited functionality.
+ gpgrt_w32_override_locale New.
+
+ Release-info: https://dev.gnupg.org/T4205
Noteworthy changes in version 1.32 (2018-07-12) [C24/A24/R3]
diff --git a/configure.ac b/configure.ac
index 34ea775..11d6369 100644
--- a/configure.ac
+++ b/configure.ac
@@ -49,9 +49,9 @@ 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=24
-LIBGPG_ERROR_LT_AGE=24
-LIBGPG_ERROR_LT_REVISION=3
+LIBGPG_ERROR_LT_CURRENT=25
+LIBGPG_ERROR_LT_AGE=25
+LIBGPG_ERROR_LT_REVISION=0
################################################
AC_SUBST(LIBGPG_ERROR_LT_CURRENT)
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 9090067..8cfa95e 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -33,7 +33,7 @@ YAT2M_OPTIONS = -I $(srcdir) \
--release "Libgpg-error @PACKAGE_VERSION@" --source "GnuPG"
myman_sources = gpgrt.texi
-myman_pages = gpg-error-config.1
+myman_pages = gpgrt-config.1
man_MANS = $(myman_pages)