commit 9993630e2b57a170d6188b315e7c5445ba1ae01a
parent 599b246db984dadf845b7a99f689e523be3f0df1
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 4 May 2025 14:42:51 +0200
fix #9848
Diffstat:
4 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac
@@ -17,7 +17,7 @@
#
#
AC_PREREQ([2.69])
-AC_INIT([taler-exchange],[0.14.93],[taler-bug@gnunet.org])
+AC_INIT([taler-exchange],[0.14.94],[taler-bug@gnunet.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR([src/util/util.c])
AC_CONFIG_HEADERS([taler_config.h])
diff --git a/debian/changelog b/debian/changelog
@@ -1,3 +1,9 @@
+taler-exchange (0.14.94) unstable; urgency=low
+
+ * Release 0.14.94.
+
+ -- Christian Grothoff <christian@grothoff.org> Sun, 04 May 2025 13:56:46 +0200
+
taler-exchange (0.14.93) unstable; urgency=low
* Release 0.14.93.
diff --git a/doc/doxygen/taler.doxy b/doc/doxygen/taler.doxy
@@ -47,7 +47,7 @@ PROJECT_NAME = "GNU Taler: Exchange"
# could be handy for archiving the generated documentation or if some version
# control system is used.
-PROJECT_NUMBER = 0.14.93
+PROJECT_NUMBER = 0.14.94
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
diff --git a/src/kyclogic/taler-exchange-helper-measure-validate-accepted-tos b/src/kyclogic/taler-exchange-helper-measure-validate-accepted-tos
@@ -57,6 +57,7 @@ do
;;
i)
# Need context and current_rules.
+ echo "attributes"
echo "context"
echo "current_rules"
exit 0
@@ -68,7 +69,7 @@ do
exit 0
;;
v)
- echo "$0 v0.0.0"
+ echo "$0 v0.0.1"
exit 0
;;
V)
@@ -112,7 +113,7 @@ then
NEW_RULES=$(echo "$CURRENT_RULES" | jq '(.rules[] |= if (.measures[0]=="accept-tos") then del(.) else . end)')
else
# Invalid ToS version
- echo "Version of accepted ToS ${TOS_ACCEPTED} invalid." 1>&2
+ echo "Version of accepted ToS ${TOS_ACCEPTED} invalid, wanted ${EXCHANGE_AML_PROGRAM_TOPS_ENABLE_DEPOSITS_TOS_NAME}." 1>&2
NEW_RULES="$CURRENT_RULES"
fi