From 5382ec856bd153819f63a552d534dfc225c9c669 Mon Sep 17 00:00:00 2001 From: CryptoPascal31 Date: Mon, 17 Oct 2022 18:23:28 +0200 Subject: [PATCH] Bump to version 0.2 --- docs/source/deployed.rst | 30 ++++++++++++++++++++++++++++++ pact/contracts/util-lists.pact | 2 +- pact/contracts/util-math.pact | 4 ++-- pact/contracts/util-random.pact | 5 ++++- pact/contracts/util-strings.pact | 2 +- 5 files changed, 38 insertions(+), 5 deletions(-) diff --git a/docs/source/deployed.rst b/docs/source/deployed.rst index 973213a..fc91ae1 100644 --- a/docs/source/deployed.rst +++ b/docs/source/deployed.rst @@ -1,6 +1,36 @@ Deployed contracts ================== +Version 0.2 +~~~~~~~~~~~ + +Bug corrections: + * ``util-lists.count`` : Return type + * ``util-math.log10`` and ``util-math.safe-log10``: Bug in case of integer argument + +Added functions: + * ``util-random.random-decimal-range`` + * ``util-strings.to-string`` + * ``util-strings.str-to-ascii-int`` + * ``util-strings.ascii-int-to-str`` + * ``util-strings.decimal-to-str`` + * ``util-strings.str-to-decimal`` + +Renamed functions: + * ``util-strings.string-at`` to ``util-strings.char-at`` + + + +Deployed on: + * Testnet Chains 0-19 + * Mainnet Chains 0-19 + +Modules hashs: + * **free.util-lists:** 8nAzIk5zp5BpaKzU_s7s9PHShJ_Py8WBA3ZQ9-waEr4 + * **free.util-strings:** uzdfpvaEJDRfZc2SIYkjF331SaKE81CCK701q1RzkAQ + * **free.util-math:** 2LREGZ9Yj_rOMlphLVa0OSK_m7NBqpuoUjIbfj2z7_U + * **free.util-random:** I-yq-JDWu9Lpag6SJgkWbDtsaZ21k4YqOyA09uzSnuY + Version 0.1 ~~~~~~~~~~~ diff --git a/pact/contracts/util-lists.pact b/pact/contracts/util-lists.pact index 5b01ef0..9b9dc57 100644 --- a/pact/contracts/util-lists.pact +++ b/pact/contracts/util-lists.pact @@ -15,7 +15,7 @@ \ Documentation: https://pact-util-lib.readthedocs.io \ \ Github: https://github.com/CryptoPascal31/pact-util-lib " - (defconst VERSION:string "0.1") + (defconst VERSION:string "0.2") (defcap GOV() (enforce-keyset "free.util-lib")) diff --git a/pact/contracts/util-math.pact b/pact/contracts/util-math.pact index dd1dfb0..65f22b1 100644 --- a/pact/contracts/util-math.pact +++ b/pact/contracts/util-math.pact @@ -13,8 +13,8 @@ "Module containing math utilities \ \ Documentation: https://pact-util-lib.readthedocs.io \ \ Github: https://github.com/CryptoPascal31/pact-util-lib " - - (defconst VERSION:string "0.1") + + (defconst VERSION:string "0.2") (defcap GOV() (enforce-keyset "free.util-lib")) diff --git a/pact/contracts/util-random.pact b/pact/contracts/util-random.pact index fb40830..079094a 100644 --- a/pact/contracts/util-random.pact +++ b/pact/contracts/util-random.pact @@ -22,7 +22,10 @@ "This module provides pseudo-random numbers/string generation \ \ Documentation: https://pact-util-lib.readthedocs.io \ \ Github: https://github.com/CryptoPascal31/pact-util-lib " - (defconst VERSION:string "0.1") + (defconst VERSION:string "0.2") + + (bless "RBfxKPExaz5q6i64FLA_k7UVM9MaOO0UDJulfPFZBRA") + (defcap GOV() (enforce-keyset "free.util-lib")) diff --git a/pact/contracts/util-strings.pact b/pact/contracts/util-strings.pact index 279f499..9a192a1 100644 --- a/pact/contracts/util-strings.pact +++ b/pact/contracts/util-strings.pact @@ -18,7 +18,7 @@ \ Documentation: https://pact-util-lib.readthedocs.io \ \ Github: https://github.com/CryptoPascal31/pact-util-lib " - (defconst VERSION:string "0.1") + (defconst VERSION:string "0.2") (defcap GOV() (enforce-keyset "free.util-lib"))