Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into sm/dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
smiasojed committed Nov 15, 2023
2 parents 742bda1 + f0660d0 commit 465b552
Show file tree
Hide file tree
Showing 8 changed files with 126 additions and 79 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Bump `subxt` to `0.32.0` - [#1352](https://github.com/paritytech/cargo-contract/pull/1352)
- Remove check for compatible `scale` and `scale-info` versions - [#1370](https://github.com/paritytech/cargo-contract/pull/1370)
- Add workspace support -[#1358](https://github.com/paritytech/cargo-contract/pull/1358)
- Add `Storage Total Deposit` to `info` command output - [#1347](https://github.com/paritytech/cargo-contract/pull/1347)
- Add dynamic types support - [#1399](https://github.com/paritytech/cargo-contract/pull/1399)

### Fixed
- Do not allow to execute calls on immutable contract messages - [#1397](https://github.com/paritytech/cargo-contract/pull/1397)

## [4.0.0-alpha]

Replaces the yanked `3.1.0` due to issues with supporting *both* Rust versions < `1.70`
Expand Down
157 changes: 88 additions & 69 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ anyhow = "1.0.75"
blake2 = "0.10.6"
cargo_metadata = "0.18.1"
colored = "2.0.4"
clap = { version = "4.4.7", features = ["derive", "env"] }
clap = { version = "4.4.8", features = ["derive", "env"] }
duct = "0.13.6"
heck = "0.4.0"
hex = "0.4.3"
Expand Down
4 changes: 2 additions & 2 deletions crates/cargo-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ contract-metadata = { version = "4.0.0-alpha", path = "../metadata" }
contract-analyze = { version = "0.1.0", path = "../analyze" }

anyhow = "1.0.75"
clap = { version = "4.4.7", features = ["derive", "env"] }
clap = { version = "4.4.8", features = ["derive", "env"] }
primitive-types = { version = "0.12.2", default-features = false, features = ["codec", "scale-info", "serde"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
which = "5.0.0"
colored = "2.0.4"
serde_json = "1.0.108"
Expand Down
Loading

0 comments on commit 465b552

Please sign in to comment.