[COMMITTED] Prepare for 0.189

Message ID 20230303151653.403491-1-mark@klomp.org
State Committed
Headers
Series [COMMITTED] Prepare for 0.189 |

Commit Message

Mark Wielaard March 3, 2023, 3:16 p.m. UTC
  Set version to 0.189
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>
---
 NEWS                    |    5 +
 config/elfutils.spec.in |   13 +
 configure.ac            |    4 +-
 lib/printversion.c      |    2 +-
 po/de.po                | 1485 +++++++++++++++++++-------------------
 po/es.po                | 1505 +++++++++++++++++++-------------------
 po/ja.po                | 1503 +++++++++++++++++++-------------------
 po/pl.po                | 1509 ++++++++++++++++++++-------------------
 po/uk.po                | 1508 +++++++++++++++++++-------------------
 9 files changed, 3813 insertions(+), 3721 deletions(-)


[... .po ...]
  

Patch

diff --git a/NEWS b/NEWS
index 4985658f..16e37eca 100644
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,9 @@  Version 0.189 "Don't deflate!"
 configure: eu-nm, eu-addr2line and eu-stack can provide demangled symbols
            when linked with libstdc++. Use --disable-demangler to disable.
 
+           A new option --enable-sanitize-memory has been added for msan
+           sanitizer support.
+
 libelf: elf_compress now supports ELFCOMPRESS_ZSTD when build against
         libzstd
 
@@ -12,6 +15,8 @@  libdwfl: dwfl_module_return_value_location now returns 0 (no return type)
 elfcompress: -t, --type= now support zstd if libelf has been build with
              ELFCOMPRESS_ZSTD support.
 
+backends: Add support for LoongArch and Synopsys ARCv2 processors.
+
 Version 0.188 "no section left behind"
 
 readelf: Add -D, --use-dynamic option.
diff --git a/config/elfutils.spec.in b/config/elfutils.spec.in
index c444d1f5..c82a40c5 100644
--- a/config/elfutils.spec.in
+++ b/config/elfutils.spec.in
@@ -341,6 +341,19 @@  exit 0
 %systemd_postun_with_restart debuginfod.service
 
 %changelog
+* Fri Mar  3 2023 Mark Wielaard <mark@klomp.org> 0.189-1
+- configure: eu-nm, eu-addr2line and eu-stack can provide demangled
+  symbols when linked with libstdc++. Use --disable-demangler to disable.
+  A new option --enable-sanitize-memory has been added for msan sanitizer
+  support.
+- libelf: elf_compress now supports ELFCOMPRESS_ZSTD when build
+  against libzstd
+- libdwfl: dwfl_module_return_value_location now returns 0 (no return
+  type) for DIEs that point to a DW_TAG_unspecified_type.
+- elfcompress: -t, --type= now support zstd if libelf has been build
+  with ELFCOMPRESS_ZSTD support.
+- backends: Add support for LoongArch and Synopsys ARCv2 processors.
+
 * Wed Nov  2 2022 Mark Wielaard <mark@klomp.org> 0.188-1
 - readelf: Add -D, --use-dynamic option.
 - debuginfod-client: Add $DEBUGINFOD_HEADERS_FILE setting to supply
diff --git a/configure.ac b/configure.ac
index 142a89f6..6e881fa0 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.188],[https://sourceware.org/bugzilla],[elfutils],[http://elfutils.org/])
+AC_INIT([elfutils],[0.189],[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-2022 The elfutils developers.])
+AC_COPYRIGHT([Copyright (C) 1996-2023 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/printversion.c b/lib/printversion.c
index 7d31fa83..be629b59 100644
--- a/lib/printversion.c
+++ b/lib/printversion.c
@@ -40,5 +40,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\
-"), "2022", PACKAGE_URL);
+"), "2023", PACKAGE_URL);
 }