Skip to content

Commit 417b928

Browse files
committed
chore: Release
1 parent 3818680 commit 417b928

File tree

17 files changed

+31
-29
lines changed

17 files changed

+31
-29
lines changed

Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ repository = "https://github.com/ergoplatform/sigma-rust"
2525
edition = "2021"
2626

2727
[workspace.dependencies]
28-
sigma-util = { version = "^0.13.0", path = "./sigma-util" }
29-
sigma-ser = { version = "^0.14.0", path = "./sigma-ser" }
30-
ergotree-ir = { version = "^0.25.0", path = "./ergotree-ir" }
31-
ergo-chain-types = { version = "^0.12.0", path = "./ergo-chain-types" }
28+
sigma-util = { version = "^0.14.0", path = "./sigma-util" }
29+
sigma-ser = { version = "^0.15.0", path = "./sigma-ser" }
30+
ergotree-ir = { version = "^0.26.0", path = "./ergotree-ir" }
31+
ergo-chain-types = { version = "^0.13.0", path = "./ergo-chain-types" }
3232
sigma-test-util = { version = "^0.3.0", path = "./sigma-test-util" }
33-
ergoscript-compiler = { version = "^0.21.0", path = "./ergoscript-compiler" }
34-
ergotree-interpreter = { version = "^0.25.0", path = "./ergotree-interpreter" }
35-
ergo-nipopow = { version = "^0.12", path = "./ergo-nipopow" }
36-
ergo-merkle-tree = { version = "^0.12.0", path = "./ergo-merkle-tree" }
37-
ergo-rest = { version = "^0.10.0", path = "./ergo-rest" }
38-
ergo-lib = { version = "^0.25.0", path = "./ergo-lib"}
33+
ergoscript-compiler = { version = "^0.22.0", path = "./ergoscript-compiler" }
34+
ergotree-interpreter = { version = "^0.26.0", path = "./ergotree-interpreter" }
35+
ergo-nipopow = { version = "^0.13", path = "./ergo-nipopow" }
36+
ergo-merkle-tree = { version = "^0.13.0", path = "./ergo-merkle-tree" }
37+
ergo-rest = { version = "^0.11.0", path = "./ergo-rest" }
38+
ergo-lib = { version = "^0.26.0", path = "./ergo-lib"}
3939
k256 = { version = "0.13.1", features = ["arithmetic", "ecdsa"] }
4040
elliptic-curve = { version = "0.12", features = ["ff"] }
4141
thiserror = "1"

bindings/ergo-lib-c-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergo-lib-c-core"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true

bindings/ergo-lib-c/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergo-lib-c"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true
@@ -16,7 +16,7 @@ name = "ergo"
1616
crate-type = ["staticlib"]
1717

1818
[dependencies]
19-
ergo-lib-c-core = { version = "^0.25.0", path = "../ergo-lib-c-core" }
19+
ergo-lib-c-core = { version = "^0.26.0", path = "../ergo-lib-c-core" }
2020
paste = "^1.0"
2121

2222
[features]

bindings/ergo-lib-jni/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergo-lib-jni"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true
@@ -16,4 +16,4 @@ path = "src/main/rust/lib.rs"
1616
jni = "0.19.0"
1717
log = "0.4.16"
1818
ergo-lib = { workspace = true }
19-
ergo-lib-c-core = { version = "^0.25.0", path = "../ergo-lib-c-core" }
19+
ergo-lib-c-core = { version = "^0.26.0", path = "../ergo-lib-c-core" }

bindings/ergo-lib-wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergo-lib-wasm"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository = "https://github.com/ergoplatform/sigma-rust"

ergo-chain-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergo-chain-types"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true

ergo-lib/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
9+
## [0.26.0] - 2023-10-13
910

1011
### Added
1112
* Add pretty_print method to ErgoTree and Expr https://github.com/ergoplatform/sigma-rust/pull/729
@@ -451,7 +452,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
451452
- ErgoTree constant values conversion.
452453

453454
<!-- next-url -->
454-
[Unreleased]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.25.0...HEAD
455+
[Unreleased]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.26.0...HEAD
456+
[0.26.0]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.25.0...ergo-lib-v0.26.0
455457
[0.25.0]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.24.1...ergo-lib-v0.25.0
456458
[0.24.1]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.24.0...ergo-lib-v0.24.1
457459
[0.24.0]: https://github.com/ergoplatform/sigma-rust/compare/ergo-lib-v0.23.0...ergo-lib-v0.24.0

ergo-lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergo-lib"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true

ergo-merkle-tree/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergo-merkle-tree"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
repository.workspace = true
55
edition.workspace = true
66
license = "CC0-1.0"

ergo-nipopow/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergo-nipopow"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true

ergo-rest/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergo-rest"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true

ergoscript-compiler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergoscript-compiler"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true

ergotree-interpreter/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergotree-interpreter"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true
@@ -35,7 +35,7 @@ serde_json = { workspace = true, optional = true }
3535
serde_with = { workspace = true, optional = true }
3636
proptest = { workspace = true, optional = true }
3737
scorex_crypto_avltree = "0.1.0"
38-
gf2_192 = { version = "^0.25.0", path = "../gf2_192" }
38+
gf2_192 = { version = "^0.26.0", path = "../gf2_192" }
3939
miette = { workspace = true }
4040
hashbrown = "0.14.1"
4141

ergotree-ir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ergotree-ir"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true

gf2_192/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gf2_192"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
license = "CC0-1.0"
55
authors = ["Timothy Ling (@kettlebell)"]
66
description = "Arithmetic operations and polynomial interpolation over Galois fields GF(2^192)"

sigma-ser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sigma-ser"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true

sigma-util/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sigma-util"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
license = "CC0-1.0"
55
authors = ["Denys Zadorozhnyi <[email protected]>"]
66
repository.workspace = true

0 commit comments

Comments
 (0)