Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
greenhat committed Sep 20, 2023
1 parent ac564c2 commit 5e77f04
Show file tree
Hide file tree
Showing 17 changed files with 30 additions and 28 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion bindings/ergo-lib-c-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
repository.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions bindings/ergo-lib-c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergo-lib-c"
version = "0.24.0"
version = "0.24.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions bindings/ergo-lib-jni/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergo-lib-jni"
version = "0.24.0"
version = "0.24.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand All @@ -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" }
2 changes: 1 addition & 1 deletion bindings/ergo-lib-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergo-lib-wasm"
version = "0.24.0"
version = "0.24.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository = "https://github.com/ergoplatform/sigma-rust"
Expand Down
2 changes: 1 addition & 1 deletion ergo-chain-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergo-chain-types"
version = "0.11.0"
version = "0.11.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down
4 changes: 3 additions & 1 deletion ergo-lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.24.1] - 2023-09-20

### Added
* add `Coll[Long]` parsing from an array of strings in Wasm API `Constant.from_js`;
Expand Down Expand Up @@ -435,7 +436,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- ErgoTree constant values conversion.

<!-- next-url -->
[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
Expand Down
2 changes: 1 addition & 1 deletion ergo-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergo-lib"
version = "0.24.0"
version = "0.24.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ergo-merkle-tree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ergo-nipopow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergo-nipopow"
version = "0.11.0"
version = "0.11.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ergo-rest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergo-rest"
version = "0.9.0"
version = "0.9.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ergoscript-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergoscript-compiler"
version = "0.20.0"
version = "0.20.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions ergotree-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergotree-interpreter"
version = "0.24.0"
version = "0.24.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion ergotree-ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergotree-ir"
version = "0.24.0"
version = "0.24.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion gf2_192/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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)"
Expand Down
2 changes: 1 addition & 1 deletion sigma-ser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sigma-ser"
version = "0.13.0"
version = "0.13.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion sigma-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sigma-util"
version = "0.12.0"
version = "0.12.1"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down

0 comments on commit 5e77f04

Please sign in to comment.