Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
SethDusek committed Aug 8, 2024
1 parent 08a9c96 commit 46ea012
Show file tree
Hide file tree
Showing 19 changed files with 32 additions and 32 deletions.
22 changes: 11 additions & 11 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.14.0", path = "./sigma-util" }
sigma-ser = { version = "^0.15.0", path = "./sigma-ser" }
ergotree-ir = { version = "^0.27.1", path = "./ergotree-ir" }
ergo-chain-types = { version = "^0.14.1", path = "./ergo-chain-types" }
sigma-test-util = { version = "^0.3.0", path = "./sigma-test-util" }
ergoscript-compiler = { version = "^0.23.1", path = "./ergoscript-compiler" }
ergotree-interpreter = { version = "^0.27.1", path = "./ergotree-interpreter" }
ergo-nipopow = { version = "^0.14", path = "./ergo-nipopow" }
ergo-merkle-tree = { version = "^0.14.1", path = "./ergo-merkle-tree" }
ergo-rest = { version = "^0.12.1", path = "./ergo-rest" }
ergo-lib = { version = "^0.27.1", path = "./ergo-lib"}
sigma-util = { version = "^0.15.0", path = "./sigma-util" }
sigma-ser = { version = "^0.16.0", path = "./sigma-ser" }
ergotree-ir = { version = "^0.28.0", path = "./ergotree-ir" }
ergo-chain-types = { version = "^0.15.0", path = "./ergo-chain-types" }
sigma-test-util = { version = "^0.4.0", path = "./sigma-test-util" }
ergoscript-compiler = { version = "^0.24.0", path = "./ergoscript-compiler" }
ergotree-interpreter = { version = "^0.28.0", path = "./ergotree-interpreter" }
ergo-nipopow = { version = "^0.15", path = "./ergo-nipopow" }
ergo-merkle-tree = { version = "^0.15.0", path = "./ergo-merkle-tree" }
ergo-rest = { version = "^0.13.0", path = "./ergo-rest" }
ergo-lib = { version = "^0.28.0", 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.27.1"
version = "0.28.0"
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.27.1"
version = "0.28.0"
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.27.1", path = "../ergo-lib-c-core" }
ergo-lib-c-core = { version = "^0.28.0", 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.27.1"
version = "0.28.0"
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.27.1", path = "../ergo-lib-c-core" }
ergo-lib-c-core = { version = "^0.28.0", 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.27.1"
version = "0.28.0"
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-generation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergo-chain-generation"
version = "0.14.0"
version = "0.15.0"
license = "CC0-1.0"
repository.workspace = true
edition.workspace = true
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.14.1"
version = "0.15.0"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
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.27.1"
version = "0.28.0"
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.14.1"
version = "0.15.0"
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.14.1"
version = "0.15.0"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion ergo-p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ergo-p2p"
version = "0.2.0"
version = "0.3.0"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
description = "Ergo peer-to-peer networking library"
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.12.1"
version = "0.13.0"
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.23.1"
version = "0.24.0"
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.27.1"
version = "0.28.0"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down Expand Up @@ -35,7 +35,7 @@ serde_json = { workspace = true, optional = true }
serde_with = { workspace = true, optional = true }
proptest = { workspace = true, optional = true }
ergo_avltree_rust = "0.1.0"
gf2_192 = { version = "^0.27.1", path = "../gf2_192" }
gf2_192 = { version = "^0.28.0", path = "../gf2_192" }
miette = { workspace = true }
hashbrown = "0.14.3"

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.27.1"
version = "0.28.0"
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.27.1"
version = "0.28.0"
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.15.0"
version = "0.16.0"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion sigma-test-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sigma-test-util"
version = "0.3.0"
version = "0.4.0"
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.14.0"
version = "0.15.0"
license = "CC0-1.0"
authors = ["Denys Zadorozhnyi <[email protected]>"]
repository.workspace = true
Expand Down

0 comments on commit 46ea012

Please sign in to comment.