summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2019-01-16 08:28:22 +0100
committerWerner Koch <wk@gnupg.org>2019-01-16 08:43:46 +0100
commit8bc75741cadf95e2fac64891cf402cde891afe64 (patch)
treecfc5496fef8815988b57d984f4322bd46e571c74
parent5d2b20a04b526d090a2328bd79bc3a76ced327dc (diff)
downloadlibgpg-error-8bc75741cadf95e2fac64891cf402cde891afe64.tar.gz
* configure.ac: Bump LT version to C26/A26/R0. Signed-off-by: Werner Koch <wk@gnupg.org>
-rw-r--r--AUTHORS2
-rw-r--r--NEWS10
-rw-r--r--configure.ac4
-rw-r--r--src/gpg-error.c2
-rw-r--r--src/gpg-error.h.in2
-rw-r--r--src/version.c2
-rw-r--r--src/versioninfo.rc.in2
7 files changed, 16 insertions, 8 deletions
diff --git a/AUTHORS b/AUTHORS
index 5d323eb..6c73617 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -16,7 +16,7 @@ listed individually.
List of Copyright holders
=========================
- Copyright (C) 2001-2018 g10 Code GmbH
+ Copyright (C) 2001-2019 g10 Code GmbH
Copyright (C) 1995-2017 Free Software Foundation, Inc.
Copyright (C) 1998-2006, 2008-2017 Werner Koch
Copyright (C) 2014 Jedi Lin
diff --git a/NEWS b/NEWS
index 4779bc0..22418d2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,19 @@
-Noteworthy changes in version 1.34 (unreleased) [C25/A25/R_]
+Noteworthy changes in version 1.34 (2019-01-16) [C26/A26/R0]
-----------------------------------------------
+ * Support for riscv32.
+
+ * New API to allow emergency cleanup after internal fatal errors.
+
+ * Minor bug and portability fixes. [#4286,#4298
+
* Interface changes relative to the 1.33 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gpgrt_abort NEW.
gpgrt_add_emergency_cleanup NEW.
+ Release-info: https://dev.gnupg.org/T4296
+
Noteworthy changes in version 1.33 (2018-12-07) [C25/A25/R0]
-----------------------------------------------
diff --git a/configure.ac b/configure.ac
index 400f99e..4d9dd4a 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=25
-LIBGPG_ERROR_LT_AGE=25
+LIBGPG_ERROR_LT_CURRENT=26
+LIBGPG_ERROR_LT_AGE=26
LIBGPG_ERROR_LT_REVISION=0
################################################
diff --git a/src/gpg-error.c b/src/gpg-error.c
index 13703ef..2eb5e7b 100644
--- a/src/gpg-error.c
+++ b/src/gpg-error.c
@@ -454,7 +454,7 @@ my_strusage (int level)
case 11: p = "gpg-error"; break;
case 12: p = PACKAGE_NAME; break;
case 13: p = PACKAGE_VERSION; break;
- case 14: p = "Copyright (C) 2018 g10 Code GmbH"; break;
+ case 14: p = "Copyright (C) 2019 g10 Code GmbH"; break;
case 19: p = _("Please report bugs to <https://bugs.gnupg.org>.\n"); break;
case 1:
diff --git a/src/gpg-error.h.in b/src/gpg-error.h.in
index a31fb84..1b9be09 100644
--- a/src/gpg-error.h.in
+++ b/src/gpg-error.h.in
@@ -1,5 +1,5 @@
/* gpg-error.h or gpgrt.h - Common code for GnuPG and others. -*- c -*-
- * Copyright (C) 2001-2018 g10 Code GmbH
+ * Copyright (C) 2001-2019 g10 Code GmbH
*
* This file is part of libgpg-error (aka libgpgrt).
*
diff --git a/src/version.c b/src/version.c
index ac2f057..c65f5e9 100644
--- a/src/version.c
+++ b/src/version.c
@@ -39,7 +39,7 @@ cright_blurb (void)
static const char blurb[] =
"\n\n"
"This is Libgpg-error " PACKAGE_VERSION " - A runtime library\n"
- "Copyright 2001-2018 g10 Code GmbH\n"
+ "Copyright 2001-2019 g10 Code GmbH\n"
"\n"
"(" BUILD_REVISION " " BUILD_TIMESTAMP ")\n"
"\n\n";
diff --git a/src/versioninfo.rc.in b/src/versioninfo.rc.in
index 51575b3..30aab66 100644
--- a/src/versioninfo.rc.in
+++ b/src/versioninfo.rc.in
@@ -40,7 +40,7 @@ BEGIN
VALUE "FileDescription", "libgpg-error - Common error codes\0"
VALUE "FileVersion", "@LIBGPG_ERROR_LT_CURRENT@.@LIBGPG_ERROR_LT_AGE@.@LIBGPG_ERROR_LT_REVISION@.@BUILD_REVISION@\0"
VALUE "InternalName", "libgpg-error\0"
- VALUE "LegalCopyright", "Copyright © 2017 g10 Code GmbH\0"
+ VALUE "LegalCopyright", "Copyright © 2019 g10 Code GmbH\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "libgpg-error.dll\0"
VALUE "PrivateBuild", "\0"