From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id 03D573858D37 for ; Fri, 3 Mar 2023 15:17:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 03D573858D37 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from r6.localdomain (82-217-174-174.cable.dynamic.v4.ziggo.nl [82.217.174.174]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 2E5143032F8F; Fri, 3 Mar 2023 16:17:03 +0100 (CET) Received: by r6.localdomain (Postfix, from userid 1000) id E8728340265; Fri, 3 Mar 2023 16:17:02 +0100 (CET) From: Mark Wielaard To: elfutils-devel@sourceware.org Cc: Mark Wielaard Subject: [COMMITTED] Prepare for 0.189 Date: Fri, 3 Mar 2023 16:16:53 +0100 Message-Id: <20230303151653.403491-1-mark@klomp.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-3035.6 required=5.0 tests=BAYES_00,GIT_PATCH_0,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,KAM_NUMSUBJECT,KAM_SHORT,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: 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 --- 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(-) 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 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 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 . -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); } [... .po ...] -- 2.39.2