Skip to content

Commit

Permalink
Changelog and version bump for 1.4.0 (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
zie1ony authored Oct 18, 2024
1 parent 3532fa0 commit d669109
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 17 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@

Changelog for `odra`.

## [1.3.0] - 2024-08-xx
## [1.4.0] - 2024-10-18
### Added
- `deploy_with_cfg` to handle `odra_cfg` args in `livenet`.
- `odra-cli` is now in the repository.

### Fixed
- Calling `init` fails in `odra_vm`.


## [1.4.0] - 2024-08-20
### Added
- `OdraContract` trait grouping module-related structures.
### Changed
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ exclude = [ "examples", "modules", "benchmark", "odra-casper/proxy-caller", "tem
resolver = "2"

[workspace.package]
version = "1.3.0"
version = "1.4.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.3.0" }
odra-macros = { path = "odra-macros", version = "1.3.0" }
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "1.3.0" }
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "1.3.0" }
odra-vm = { path = "odra-vm", version = "1.3.0" }
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "1.3.0"}
odra-casper-livenet-env = { path = "odra-casper/livenet-env", version = "1.3.0"}
odra-schema = { path = "odra-schema", version = "1.3.0" }
odra-core = { path = "core", version = "1.4.0" }
odra-macros = { path = "odra-macros", version = "1.4.0" }
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "1.4.0" }
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "1.4.0" }
odra-vm = { path = "odra-vm", version = "1.4.0" }
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "1.4.0"}
odra-casper-livenet-env = { path = "odra-casper/livenet-env", version = "1.4.0"}
odra-schema = { path = "odra-schema", version = "1.4.0" }
casper-contract = { version = "4.0.0", default-features = false }
casper-types = { version = "4.0.1", default-features = false }
casper-execution-engine = "7.0.1"
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.3.0"
version = "1.4.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.3.0"
version = "1.4.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.3.0", default-features = false }
odra = { path = "../odra", version = "1.4.0", default-features = false }
serde = { version = "1.0.80", default-features = false }
serde_json = { version = "1.0.59", default-features = false }
serde-json-wasm = { version = "1.0.1", default-features = false }
base16 = { version = "0.2.1", default-features = false }
base64 = { version = "0.22.0", default-features = false, features = ["alloc"] }

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

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

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

[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.3.0"
version = "1.4.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 d669109

Please sign in to comment.