From 5e77f04368d90a9527e6aee7ffaff4e63e1f230d Mon Sep 17 00:00:00 2001 From: Denys Zadorozhnyi Date: Wed, 20 Sep 2023 15:08:45 +0300 Subject: [PATCH] chore: Release --- Cargo.toml | 18 +++++++++--------- bindings/ergo-lib-c-core/Cargo.toml | 2 +- bindings/ergo-lib-c/Cargo.toml | 4 ++-- bindings/ergo-lib-jni/Cargo.toml | 4 ++-- bindings/ergo-lib-wasm/Cargo.toml | 2 +- ergo-chain-types/Cargo.toml | 2 +- ergo-lib/CHANGELOG.md | 4 +++- ergo-lib/Cargo.toml | 2 +- ergo-merkle-tree/Cargo.toml | 2 +- ergo-nipopow/Cargo.toml | 2 +- ergo-rest/Cargo.toml | 2 +- ergoscript-compiler/Cargo.toml | 2 +- ergotree-interpreter/Cargo.toml | 4 ++-- ergotree-ir/Cargo.toml | 2 +- gf2_192/Cargo.toml | 2 +- sigma-ser/Cargo.toml | 2 +- sigma-util/Cargo.toml | 2 +- 17 files changed, 30 insertions(+), 28 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3508e93b2..202b75360 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,17 +25,17 @@ repository = "https://github.com/ergoplatform/sigma-rust" edition = "2021" [workspace.dependencies] -sigma-util = { version = "^0.12.0", path = "./sigma-util" } -sigma-ser = { version = "^0.13.0", path = "./sigma-ser" } -ergotree-ir = { version = "^0.24.0", path = "./ergotree-ir" } -ergo-chain-types = { version = "^0.11.0", path = "./ergo-chain-types" } +sigma-util = { version = "^0.12.1", path = "./sigma-util" } +sigma-ser = { version = "^0.13.1", path = "./sigma-ser" } +ergotree-ir = { version = "^0.24.1", path = "./ergotree-ir" } +ergo-chain-types = { version = "^0.11.1", path = "./ergo-chain-types" } sigma-test-util = { version = "^0.3.0", path = "./sigma-test-util" } -ergoscript-compiler = { version = "^0.20.0", path = "./ergoscript-compiler" } -ergotree-interpreter = { version = "^0.24.0", path = "./ergotree-interpreter" } +ergoscript-compiler = { version = "^0.20.1", path = "./ergoscript-compiler" } +ergotree-interpreter = { version = "^0.24.1", path = "./ergotree-interpreter" } ergo-nipopow = { version = "^0.11", path = "./ergo-nipopow" } -ergo-merkle-tree = { version = "^0.11.0", path = "./ergo-merkle-tree" } -ergo-rest = { version = "^0.9.0", path = "./ergo-rest" } -ergo-lib = { version = "^0.24.0", path = "./ergo-lib"} +ergo-merkle-tree = { version = "^0.11.1", path = "./ergo-merkle-tree" } +ergo-rest = { version = "^0.9.1", path = "./ergo-rest" } +ergo-lib = { version = "^0.24.1", path = "./ergo-lib"} k256 = { version = "0.13.1", features = ["arithmetic", "ecdsa"] } elliptic-curve = {version = "0.12", features = [ "ff"]} thiserror = "1" diff --git a/bindings/ergo-lib-c-core/Cargo.toml b/bindings/ergo-lib-c-core/Cargo.toml index c4adf4076..7beb4ac56 100644 --- a/bindings/ergo-lib-c-core/Cargo.toml +++ b/bindings/ergo-lib-c-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergo-lib-c-core" -version = "0.24.0" +version = "0.24.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true diff --git a/bindings/ergo-lib-c/Cargo.toml b/bindings/ergo-lib-c/Cargo.toml index 631b94579..394eb2ad0 100644 --- a/bindings/ergo-lib-c/Cargo.toml +++ b/bindings/ergo-lib-c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergo-lib-c" -version = "0.24.0" +version = "0.24.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true @@ -16,7 +16,7 @@ name = "ergo" crate-type = ["staticlib"] [dependencies] -ergo-lib-c-core = { version = "^0.24.0", path = "../ergo-lib-c-core" } +ergo-lib-c-core = { version = "^0.24.1", path = "../ergo-lib-c-core" } paste = "^1.0" [features] diff --git a/bindings/ergo-lib-jni/Cargo.toml b/bindings/ergo-lib-jni/Cargo.toml index 5954a3306..e7e1e5ae5 100644 --- a/bindings/ergo-lib-jni/Cargo.toml +++ b/bindings/ergo-lib-jni/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergo-lib-jni" -version = "0.24.0" +version = "0.24.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true @@ -16,4 +16,4 @@ path = "src/main/rust/lib.rs" jni = "0.19.0" log = "0.4.16" ergo-lib = { workspace = true } -ergo-lib-c-core = { version = "^0.24.0", path = "../ergo-lib-c-core" } +ergo-lib-c-core = { version = "^0.24.1", path = "../ergo-lib-c-core" } diff --git a/bindings/ergo-lib-wasm/Cargo.toml b/bindings/ergo-lib-wasm/Cargo.toml index f0c61b0db..99f89b65a 100644 --- a/bindings/ergo-lib-wasm/Cargo.toml +++ b/bindings/ergo-lib-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergo-lib-wasm" -version = "0.24.0" +version = "0.24.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository = "https://github.com/ergoplatform/sigma-rust" diff --git a/ergo-chain-types/Cargo.toml b/ergo-chain-types/Cargo.toml index 22f497ac8..214a86812 100644 --- a/ergo-chain-types/Cargo.toml +++ b/ergo-chain-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergo-chain-types" -version = "0.11.0" +version = "0.11.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true diff --git a/ergo-lib/CHANGELOG.md b/ergo-lib/CHANGELOG.md index 02d21ba50..1ee67729a 100644 --- a/ergo-lib/CHANGELOG.md +++ b/ergo-lib/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.24.1] - 2023-09-20 ### Added * add `Coll[Long]` parsing from an array of strings in Wasm API `Constant.from_js`; @@ -435,7 +436,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - ErgoTree constant values conversion. -[Unreleased]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.24.0...HEAD +[Unreleased]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.24.1...HEAD +[0.24.1]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.24.0...ergo-lib-v0.24.1 [0.24.0]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.23.0...ergo-lib-v0.24.0 [0.23.0]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.22.0...ergo-lib-v0.23.0 [0.22.0]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.21.1...ergo-lib-v0.22.0 diff --git a/ergo-lib/Cargo.toml b/ergo-lib/Cargo.toml index 0d4b40f41..30df29135 100644 --- a/ergo-lib/Cargo.toml +++ b/ergo-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergo-lib" -version = "0.24.0" +version = "0.24.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true diff --git a/ergo-merkle-tree/Cargo.toml b/ergo-merkle-tree/Cargo.toml index 3f69d83a3..5923c2f71 100644 --- a/ergo-merkle-tree/Cargo.toml +++ b/ergo-merkle-tree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergo-merkle-tree" -version = "0.11.0" +version = "0.11.1" repository.workspace = true edition.workspace = true license = "CC0-1.0" diff --git a/ergo-nipopow/Cargo.toml b/ergo-nipopow/Cargo.toml index 8ececacd9..5653490d6 100644 --- a/ergo-nipopow/Cargo.toml +++ b/ergo-nipopow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergo-nipopow" -version = "0.11.0" +version = "0.11.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true diff --git a/ergo-rest/Cargo.toml b/ergo-rest/Cargo.toml index b7317bd43..25fc166f4 100644 --- a/ergo-rest/Cargo.toml +++ b/ergo-rest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergo-rest" -version = "0.9.0" +version = "0.9.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true diff --git a/ergoscript-compiler/Cargo.toml b/ergoscript-compiler/Cargo.toml index c221efef7..5b90d918c 100644 --- a/ergoscript-compiler/Cargo.toml +++ b/ergoscript-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergoscript-compiler" -version = "0.20.0" +version = "0.20.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true diff --git a/ergotree-interpreter/Cargo.toml b/ergotree-interpreter/Cargo.toml index f8f16842a..ce6934ac2 100644 --- a/ergotree-interpreter/Cargo.toml +++ b/ergotree-interpreter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergotree-interpreter" -version = "0.24.0" +version = "0.24.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true @@ -37,7 +37,7 @@ serde_json = { workspace = true, optional = true } serde_with = { workspace = true, optional = true } proptest = { workspace = true , optional = true } scorex_crypto_avltree = "0.1.0" -gf2_192 = { version = "^0.24.0", path = "../gf2_192" } +gf2_192 = { version = "^0.24.1", path = "../gf2_192" } [features] default = ["json"] diff --git a/ergotree-ir/Cargo.toml b/ergotree-ir/Cargo.toml index d6ec1ac92..7711bdaf5 100644 --- a/ergotree-ir/Cargo.toml +++ b/ergotree-ir/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ergotree-ir" -version = "0.24.0" +version = "0.24.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true diff --git a/gf2_192/Cargo.toml b/gf2_192/Cargo.toml index 7f7588221..7f520e7ad 100644 --- a/gf2_192/Cargo.toml +++ b/gf2_192/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gf2_192" -version = "0.24.0" +version = "0.24.1" license = "CC0-1.0" authors = ["Timothy Ling (@kettlebell)"] description = "Arithmetic operations and polynomial interpolation over Galois fields GF(2^192)" diff --git a/sigma-ser/Cargo.toml b/sigma-ser/Cargo.toml index 36bbec8be..16fd73eb6 100644 --- a/sigma-ser/Cargo.toml +++ b/sigma-ser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sigma-ser" -version = "0.13.0" +version = "0.13.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true diff --git a/sigma-util/Cargo.toml b/sigma-util/Cargo.toml index 3ed114cb7..2221da039 100644 --- a/sigma-util/Cargo.toml +++ b/sigma-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sigma-util" -version = "0.12.0" +version = "0.12.1" license = "CC0-1.0" authors = ["Denys Zadorozhnyi "] repository.workspace = true