Hi, I am attaching the "version bump" commit which is needed to fix
'make dist' command, per Makefile.in (instantiated from Automake):
distdir-am: $(DISTFILES)
@case `sed 15q $(srcdir)/NEWS` in \
*"$(VERSION)"*) : ;; \
*) \
echo "NEWS not updated; not releasing" 1>&2; \
exit 1;; \
esac
It fails with:
NEWS not updated; not releasing
This breaks our RPM packaging CI:
https://github.com/praiskup/tar/commits/ci
Pavel
>From 51f2d6f3fee492a4be9a772c6720f90ec00ed34b Mon Sep 17 00:00:00 2001
From: Pavel Raiskup <[email protected]>
Date: Tue, 1 Aug 2023 15:32:24 +0200
Subject: [PATCH] Bump to a pre-release versions
---
NEWS | 2 +-
configure.ac | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/NEWS b/NEWS
index 42a34513..d57c86d3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,7 @@
GNU tar NEWS - User visible changes. 2023-08-01
Please send GNU tar bug reports to <[email protected]>
-version TBD
+version 1.35.90
* New manual section "Reproducibility", for reproducible tarballs.
diff --git a/configure.ac b/configure.ac
index 338e1834..4367d880 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-AC_INIT([GNU tar], [1.35], [[email protected]])
+AC_INIT([GNU tar], [1.35.90], [[email protected]])
AC_CONFIG_SRCDIR([src/tar.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS([config.h])
--
2.41.0