commit 96f82418c638a2d91f047319fdd589068e8f8e7f
parent eefbf80ccfeb22e51ed14939f5eac48063900a3f
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 30 Jul 2026 10:36:52 +0200
implement #11645
Diffstat:
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/backend/taler-merchant-httpd_get-config.c b/src/backend/taler-merchant-httpd_get-config.c
@@ -44,7 +44,7 @@
* #MERCHANT_PROTOCOL_CURRENT and #MERCHANT_PROTOCOL_AGE in
* merchant_api_get_config.c!
*/
-#define MERCHANT_PROTOCOL_VERSION "32:0:20"
+#define MERCHANT_PROTOCOL_VERSION "33:0:21"
/**
@@ -198,6 +198,8 @@ MH_handler_config (const struct TMH_RequestHandler *rh,
"urn:net:taler:specs:taler-merchant:c-reference"),
GNUNET_JSON_pack_string ("name",
"taler-merchant"),
+ GNUNET_JSON_pack_string ("build_version",
+ PACKAGE_VERSION),
GNUNET_JSON_pack_string ("version",
MERCHANT_PROTOCOL_VERSION));
}
diff --git a/src/lib/merchant_api_get-config.c b/src/lib/merchant_api_get-config.c
@@ -34,12 +34,12 @@
* Which version of the Taler protocol is implemented
* by this library? Used to determine compatibility.
*/
-#define MERCHANT_PROTOCOL_CURRENT 32
+#define MERCHANT_PROTOCOL_CURRENT 33
/**
* How many configs are we backwards-compatible with?
*/
-#define MERCHANT_PROTOCOL_AGE 8
+#define MERCHANT_PROTOCOL_AGE 9
/**
* How many exchanges do we allow at most per merchant?