Skip to content

Commit

Permalink
Bump to version 0.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptoPascal31 committed Mar 5, 2023
1 parent ca102a3 commit 9b71a50
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 6 deletions.
27 changes: 27 additions & 0 deletions docs/source/deployed.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
Deployed contracts
==================

Version 0.5
~~~~~~~~~~~

Added functions:
* ``util-math.sizeof``
* ``util-string.split-chunks``
* ``util-time.is-today``
* ``util-time.today``
* ``util-time.is-past``
* ``util-time.is-future``
* ``util-zk.serialize-proof``
* ``util-zk.deserialize-proof``
* ``util-zk.neg-G1``
* ``util-zk.verify-groth16-proof``

Deployed on:
* Testnet Chains 0-19
* Mainnet Chains 0-19

Modules hashes:
* **free.util-lists:** mYH9B513yhSq2EBuEEXy3Sn-wddNLFdnooSw6WMEjd4
* **free.util-strings:** afQtGqwCyl7l8oIFA-FB3AmShMn3BHjI9D_NKDxlRjE
* **free.util-math:** mCgwRLIyTi6JhaF18huxjWvlNNXxA3mav-sDxyflMmc
* **free.util-random:** NEG7aa1Edx6oU97d5wRh2Tl6Sw9Hiv4GOGBcZK2UWtU
* **free.util-time:** QFg60Pul9sJSVqpcFA3SbP7QEPmIdTeSMI6T50OQvhQ
* **free.util-zk:** hY1iF-6KUvzp2O-hRPnTPFeqOxEF7utyVhrMVlgzTMk

Version 0.4
~~~~~~~~~~~

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.4")
(defconst VERSION:string "0.5")

(defcap GOV()
(enforce-keyset "free.util-lib"))
Expand Down
2 changes: 1 addition & 1 deletion pact/contracts/util-math.pact
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
\ Documentation: https://pact-util-lib.readthedocs.io \
\ Github: https://github.com/CryptoPascal31/pact-util-lib "

(defconst VERSION:string "0.4")
(defconst VERSION:string "0.5")

(defcap GOV()
(enforce-keyset "free.util-lib"))
Expand Down
2 changes: 1 addition & 1 deletion pact/contracts/util-random.pact
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
\ Documentation: https://pact-util-lib.readthedocs.io \
\ Github: https://github.com/CryptoPascal31/pact-util-lib "

(defconst VERSION:string "0.4")
(defconst VERSION:string "0.5")

(bless "RBfxKPExaz5q6i64FLA_k7UVM9MaOO0UDJulfPFZBRA")
(bless "I-yq-JDWu9Lpag6SJgkWbDtsaZ21k4YqOyA09uzSnuY")
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.4")
(defconst VERSION:string "0.5")

(defcap GOV()
(enforce-keyset "free.util-lib"))
Expand Down
2 changes: 1 addition & 1 deletion pact/contracts/util-time.pact
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
\ Documentation: https://pact-util-lib.readthedocs.io \
\ Github: https://github.com/CryptoPascal31/pact-util-lib "

(defconst VERSION:string "0.4")
(defconst VERSION:string "0.5")

(defcap GOV()
(enforce-keyset "free.util-lib"))
Expand Down
2 changes: 1 addition & 1 deletion pact/contracts/util-zk.pact
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
; - https://github.com/kadena-io/pact/blob/master/tests/pact/pairing.repl
; - https://github.com/iden3/snarkjs/blob/master/templates/verifier_groth16.sol.ejs

(defconst VERSION:string "0.4")
(defconst VERSION:string "0.5")

(use util-strings [split-chunks])

Expand Down

0 comments on commit 9b71a50

Please sign in to comment.