summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2023-08-31 21:03:02 +0200
committerChristian Brabandt <cb@256bit.org>2023-08-31 21:04:52 +0200
commit0ffa97e8fae5e73ff05ba24178cfc7206a3fe67e (patch)
tree9c5a6df1549bcbb9a07e8fc6b6818c54e652e553
parent6ad4a60a972c7dc2d0cd099fed1e8480cc63422f (diff)
patch 9.0.1832: xxd: reporting wrong versionv9.0.1832
Problem: xxd: reporting wrong version (after 9.0.1827) Solution: Update version string Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/version.c2
-rw-r--r--src/xxd/xxd.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c
index 12979e6b66..796cff9b37 100644
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1832,
+/**/
1831,
/**/
1830,
diff --git a/src/xxd/xxd.c b/src/xxd/xxd.c
index a3827a4b8e..590cd44aad 100644
--- a/src/xxd/xxd.c
+++ b/src/xxd/xxd.c
@@ -56,6 +56,7 @@
* 04.02.2020 Add -d for decimal offsets by Aapo Rantalainen
* 14.01.2022 Disable extra newlines with -c0 -p by Erik Auerswald.
* 20.06.2022 Permit setting the variable names used by -i by David Gow
+ * 31.08.2023 -R never/auto/always prints colored output
*
* (c) 1990-1998 by Juergen Weigert (jnweiger@gmail.com)
*
@@ -134,7 +135,7 @@ extern void perror __P((char *));
# endif
#endif
-char version[] = "xxd 2022-01-14 by Juergen Weigert et al.";
+char version[] = "xxd 2023-08-31 by Juergen Weigert et al.";
#ifdef WIN32
char osver[] = " (Win32)";
#else