public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* [COMMITTED] Prepare for 0.187
@ 2022-04-25 16:35 Mark Wielaard
  0 siblings, 0 replies; only message in thread
From: Mark Wielaard @ 2022-04-25 16:35 UTC (permalink / raw)
  To: elfutils-devel; +Cc: Mark Wielaard

Set version to 0.187
Update NEWS and elfutils.spec.in
Set copyright year in configure.ac and printversion.
Regenerate po/*.po files.

Signed-off-by: Mark Wielaard <mark@klomp.org>
---
 ChangeLog               |    5 +
 NEWS                    |   13 +-
 config/ChangeLog        |    4 +
 config/elfutils.spec.in |   14 +
 configure.ac            |    4 +-
 lib/ChangeLog           |    4 +
 lib/printversion.c      |    2 +-
 po/ChangeLog            |    4 +
 po/de.po                | 1123 +++++++++++++++++++-------------------
 po/es.po                | 1128 +++++++++++++++++++--------------------
 po/ja.po                | 1120 +++++++++++++++++++-------------------
 po/pl.po                | 1120 +++++++++++++++++++-------------------
 po/uk.po                | 1121 +++++++++++++++++++-------------------
 13 files changed, 2823 insertions(+), 2839 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 5ad93a16..77173d91 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-04-25  Mark Wielaard  <mark@klomp.org>
+
+	* configure.ac (AC_INIT): Set version to 0.187.
+	* NEWS: Add some more 0.187 items.
+
 2022-04-24  Frank Ch. Eigler  <fche@redhat.com>
 
 	* AUTHORS.sh, .mailmap: New files.
diff --git a/NEWS b/NEWS
index ea74c019..c74fe3f1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,22 @@
-Version 0.187 after 0.186
+Version 0.187
 
 debuginfod: Support -C option for connection thread pooling.
 
+debuginfod-client: Negative cache file are now zero sized instead of
+                   no-permission files.
+
 addr2line: The -A, --absolute option, which shows file names including
            the full compilation directory is now the default.  To get the
            old behavior use the new option --relative.
 
+readelf, elflint: Recognize FDO Packaging Metadata ELF notes
+
+libdw, debuginfo-client: Load libcurl lazily only when files need to
+                         be fetched remotely. libcurl is now never
+                         loaded when DEBUGINFOD_URLS is unset. And when
+                         DEBUGINFOD_URLS is set, libcurl is only loaded
+                         when the debuginfod_begin function is called.
+
 Version 0.186
 
 debuginfod-client: Default $DEBUGINFOD_URLS is computed from drop-in files
diff --git a/config/ChangeLog b/config/ChangeLog
index b9b1c44e..51415258 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,7 @@
+2022-04-25  Mark Wielaard  <mark@klomp.org>
+
+	* elfutils.spec.in: Update for 0.187.
+
 2022-01-19  Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
 
 	* profile.csh.in: Set DEBUGINFOD_URLS directly. Use "$0" and :
diff --git a/config/elfutils.spec.in b/config/elfutils.spec.in
index 49e5a016..54599159 100644
--- a/config/elfutils.spec.in
+++ b/config/elfutils.spec.in
@@ -340,6 +340,20 @@ exit 0
 %systemd_postun_with_restart debuginfod.service
 
 %changelog
+* Mon Apr 25 2022 Mark Wielaard <mark@klomp.org> 0.187-1
+- debuginfod: Support -C option for connection thread pooling.
+- debuginfod-client: Negative cache file are now zero sized instead
+  of no-permission files.
+- addr2line: The -A, --absolute option, which shows file names
+  includingthe full compilation directory is now the
+  default.  To get theold behavior use the new option --relative.
+- readelf, elflint: Recognize FDO Packaging Metadata ELF notes
+- libdw, debuginfo-client: Load libcurl lazily only when files need
+  to be fetched remotely. libcurl is now never loaded when
+  DEBUGINFOD_URLS is unset. And whenDEBUGINFOD_URLS is set,
+  libcurl is only loaded when the debuginfod_begin function is
+  called.
+
 * Wed Nov 10 2021 Mark Wielaard <mark@klomp.org> 0.186-1
 - debuginfod-client: Default $DEBUGINFOD_URLS is computed from
   drop-in files /etc/debuginfod/*.urls rather than
diff --git a/configure.ac b/configure.ac
index 33c4b5e5..11d1cf82 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,7 +18,7 @@ dnl  GNU General Public License for more details.
 dnl
 dnl  You should have received a copy of the GNU General Public License
 dnl  along with this program.  If not, see <http://www.gnu.org/licenses/>.
-AC_INIT([elfutils],[0.186],[https://sourceware.org/bugzilla],[elfutils],[http://elfutils.org/])
+AC_INIT([elfutils],[0.187],[https://sourceware.org/bugzilla],[elfutils],[http://elfutils.org/])
 
 dnl Workaround for older autoconf < 2.64
 m4_ifndef([AC_PACKAGE_URL],
@@ -45,7 +45,7 @@ fi
 AC_CONFIG_AUX_DIR([config])
 AC_CONFIG_FILES([config/Makefile])
 
-AC_COPYRIGHT([Copyright (C) 1996-2021 The elfutils developers.])
+AC_COPYRIGHT([Copyright (C) 1996-2022 The elfutils developers.])
 AC_PREREQ(2.63)			dnl Minimum Autoconf version required.
 
 dnl We use GNU make extensions; automake 1.10 defaults to -Wportability.
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 6b76f647..32dda566 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,7 @@
+2022-04-25  Mark Wielaard  <mark@klomp.org>
+
+	* printversion.c (print_version): Update copyright year.
+
 2022-03-27  Mark Wielaard  <mark@klomp.org>
 
 	* system.h: define error_exit.
diff --git a/lib/printversion.c b/lib/printversion.c
index adf127d6..f657329c 100644
--- a/lib/printversion.c
+++ b/lib/printversion.c
@@ -41,5 +41,5 @@ print_version (FILE *stream, struct argp_state *state)
 Copyright (C) %s The elfutils developers <%s>.\n\
 This is free software; see the source for copying conditions.  There is NO\n\
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2021", PACKAGE_URL);
+"), "2022", PACKAGE_URL);
 }
diff --git a/po/ChangeLog b/po/ChangeLog
index afbdc249..6e610671 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,7 @@
+2022-04-25  Mark Wielaard  <mark@klomp.org>
+
+	* *.po: Update for 0.187.
+
 2021-11-10  Mark Wielaard  <mark@klomp.org>
 
 	* *.po: Update for 0.186.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-04-25 16:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-25 16:35 [COMMITTED] Prepare for 0.187 Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).