aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/versions.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-12-12 21:24:21 +0100
committerFlorian Dold <florian@dold.me>2023-12-12 21:24:28 +0100
commit387416f02dec4a7f948ba96e918e3cacaf92639e (patch)
tree959fde0a7f8c51c2749251ddff32588907e44f4b /packages/taler-wallet-core/src/versions.ts
parentf7e01690b44e42b7088457374a2a8606fd94f84e (diff)
downloadwallet-core-387416f02dec4a7f948ba96e918e3cacaf92639e.tar.xz
wallet-core: implement maxExpirationDate for checkPeerPushDebit
Diffstat (limited to 'packages/taler-wallet-core/src/versions.ts')
-rw-r--r--packages/taler-wallet-core/src/versions.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/taler-wallet-core/src/versions.ts b/packages/taler-wallet-core/src/versions.ts
index 8e0e5561b..ba6fdfaaa 100644
--- a/packages/taler-wallet-core/src/versions.ts
+++ b/packages/taler-wallet-core/src/versions.ts
@@ -36,21 +36,21 @@ export const WALLET_MERCHANT_PROTOCOL_VERSION = "5:0:1";
export const WALLET_BANK_INTEGRATION_PROTOCOL_VERSION = "0:0:0";
/**
- * Semver of the wallet-core implementation.
+ * Semver of the wallet-core API implementation.
* Will be replaced with the value from package.json in a
* post-compilation step (inside lib/).
*/
-export const WALLET_CORE_IMPLEMENTATION_VERSION = "1:0:0";
+export const WALLET_CORE_API_IMPLEMENTATION_VERSION = "2:0:1";
/**
* Libtool rules:
- *
- * If the library source code has changed at all since the last update,
+ *
+ * If the library source code has changed at all since the last update,
* then increment revision (‘c:r:a’ becomes ‘c:r+1:a’).
* If any interfaces have been added, removed, or changed since the last
* update, increment current, and set revision to 0.
- * If any interfaces have been added since the last public release, then
+ * If any interfaces have been added since the last public release, then
* increment age.
- * If any interfaces have been removed or changed since the last public
+ * If any interfaces have been removed or changed since the last public
* release, then set age to 0.
- */ \ No newline at end of file
+ */