Skip to content

Commit

Permalink
Bump to version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptoPascal31 committed Oct 17, 2022
1 parent 1552b9a commit 5382ec8
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 5 deletions.
30 changes: 30 additions & 0 deletions docs/source/deployed.rst
Original file line number Diff line number Diff line change
@@ -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
~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion pact/contracts/util-lists.pact
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
4 changes: 2 additions & 2 deletions pact/contracts/util-math.pact
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
5 changes: 4 additions & 1 deletion pact/contracts/util-random.pact
Original file line number Diff line number Diff line change
Expand Up @@ -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"))

Expand Down
2 changes: 1 addition & 1 deletion pact/contracts/util-strings.pact
Original file line number Diff line number Diff line change
Expand Up @@ -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"))

Expand Down

0 comments on commit 5382ec8

Please sign in to comment.