exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit d9fb333e6ae2fc49f3fa792c560c42a0c7b89f0d
parent 11a59c157d57ba729b94cf423e99a84f5f5762d5
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri,  9 May 2025 23:45:07 +0200

bump version to 1.0.0

Diffstat:
Mconfigure.ac | 2+-
Mdebian/changelog | 6++++++
Msrc/lib/exchange_api_handle.c | 6+++---
Msrc/testing/Makefile.am | 4++--
4 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -17,7 +17,7 @@ # # AC_PREREQ([2.69]) -AC_INIT([taler-exchange],[0.14.99],[taler-bug@gnunet.org]) +AC_INIT([taler-exchange],[1.0.0],[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 (1.0.0) unstable; urgency=low + + * Release 1.0.0. + + -- Christian Grothoff <christian@grothoff.org> Fri, 09 May 2025 23:44:51 +0200 + taler-exchange (0.14.99) unstable; urgency=low * Release 0.14.99. diff --git a/src/lib/exchange_api_handle.c b/src/lib/exchange_api_handle.c @@ -1548,9 +1548,9 @@ keys_completed_cb (void *cls, TALER_denom_pub_copy (&kd->denom_keys[i].key, &kd_old->denom_keys[i].key); kd->num_auditors = kd_old->num_auditors; - kd->auditors = GNUNET_new_array (kd->num_auditors, - struct TALER_EXCHANGE_AuditorInformation) - ; + kd->auditors + = GNUNET_new_array (kd->num_auditors, + struct TALER_EXCHANGE_AuditorInformation); /* Now the necessary deep copy... */ for (unsigned int i = 0; i<kd_old->num_auditors; i++) { diff --git a/src/testing/Makefile.am b/src/testing/Makefile.am @@ -33,11 +33,11 @@ libtalertwistertesting_la_LIBADD = \ $(XLIB) libtalertwistertesting_la_LDFLAGS = \ $(GN_LIB_LDFLAGS) $(WINFLAGS) \ - -version-info 0:0:0 + -version-info 0:1:0 endif libtalertesting_la_LDFLAGS = \ - -version-info 2:0:1 \ + -version-info 2:1:1 \ -no-undefined libtalertesting_la_SOURCES = \ testing_api_cmd_age_withdraw.c \