Skip to content

Commit

Permalink
Bump the version number to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kubaplas committed Jul 30, 2024
1 parent b283f57 commit f77c524
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ exclude = ["odra-casper/proxy-caller", "templates/blank", "templates/full", "tem
resolver = "2"

[workspace.package]
version = "1.1.0"
version = "2.0.0"
authors = ["Jakub Płaskonka <kuba@odra.dev>", "Krzysztof Pobiarżyn <krzysztof@odra.dev>", "Maciej Zieliński <maciej@odra.dev>"]
license = "MIT"
homepage = "https://odra.dev/docs"
repository = "https://github.com/odradev/odra"

[workspace.dependencies]
odra-core = { path = "core", version = "1.1.0" }
odra-macros = { path = "odra-macros", version = "1.1.0" }
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "1.1.0" }
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "1.1.0" }
odra-vm = { path = "odra-vm", version = "1.1.0" }
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "1.1.0"}
odra-schema = { path = "odra-schema", version = "1.1.0" }
odra-core = { path = "core", version = "2.0.0" }
odra-macros = { path = "odra-macros", version = "2.0.0" }
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "2.0.0" }
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "2.0.0" }
odra-vm = { path = "odra-vm", version = "2.0.0" }
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "2.0.0"}
odra-schema = { path = "odra-schema", version = "2.0.0" }
casper-contract = { git = "https://github.com/casper-network/casper-node.git", branch = "rustSDK-feat-2.0", default-features = false }
casper-contract-schema = { git = "https://github.com/odradev/casper-contract-schema.git", branch = "feature/casper-2.0" }
casper-types = "5.0.0"
Expand Down
2 changes: 1 addition & 1 deletion benchmark/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "benchmark"
version = "0.1.0"
version = "2.0.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "odra-examples"
version = "1.2.0"
version = "2.0.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion examples/ourcoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ourcoin"
version = "0.1.0"
version = "2.0.0"
edition = "2021"

[dependencies]
Expand Down
10 changes: 5 additions & 5 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "odra-modules"
version = "1.1.0"
version = "2.0.0"
edition = "2021"
authors = ["Jakub Płaskonka <kuba@odra.dev>", "Krzysztof Pobiarżyn <krzysztof@odra.dev>", "Maciej Zieliński <maciej@odra.dev>"]
license = "MIT"
Expand All @@ -9,23 +9,23 @@ description = "Collection of reusable Odra modules."
keywords = ["wasm", "webassembly", "blockchain"]

[dependencies]
odra = { path = "../odra", version = "1.1.0", default-features = false }
odra = { path = "../odra", default-features = false }
serde = { workspace = true, default-features = false }
serde_json = { workspace = true, default-features = false }
serde-json-wasm = { workspace = true }
base16 = { workspace = true }
base64 = { workspace = true, features = ["alloc"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
odra-build = { path = "../odra-build", version = "1.1.0" }
odra-build = { path = "../odra-build" }

[dev-dependencies]
odra-test = { path = "../odra-test", version = "1.1.0" }
odra-test = { path = "../odra-test" }
once_cell = "1"
blake2 = "0.10.6"

[build-dependencies]
odra-build = { path = "../odra-build", version = "1.1.0" }
odra-build = { path = "../odra-build" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion odra-casper/proxy-caller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "odra-casper-proxy-caller"
edition = "2021"
version = "1.2.0"
version = "2.0.0"
authors = ["Jakub Płaskonka <kuba@odra.dev>", "Krzysztof Pobiarżyn <krzysztof@odra.dev>", "Maciej Zieliński <maciej@odra.dev>"]
license = "MIT"
homepage = "https://odra.dev/docs"
Expand Down

0 comments on commit f77c524

Please sign in to comment.