Skip to content

Commit

Permalink
Bump ink and c-c to stable versions (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
SkymanOne committed Mar 12, 2024
1 parent f21834d commit da53d56
Show file tree
Hide file tree
Showing 11 changed files with 70 additions and 68 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.13.0]
## [Unreleased]

- Rework Sandbox API to better support custom Runtime
## [0.14.0]

## [Unreleased]
- Bump `ink` to `5.0.0` and `cargo-contract` to `4.0.0`

- Rework Sandbox API to better support custom Runtime

# [0.13.0]

Expand Down
102 changes: 51 additions & 51 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ homepage = "https://github.com/Cardinal-Cryptography/drink"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Cardinal-Cryptography/drink"
version = "0.13.0"
version = "0.14.0"

[workspace.dependencies]
anyhow = { version = "1.0.71" }
cargo_metadata = { version = "0.18.1" }
clap = { version = "4.3.4" }
contract-build = { version = "4.0.0-rc.4" }
contract-metadata = { version = "4.0.0-rc.4" }
contract-transcode = { version = "4.0.0-rc.4" }
contract-build = { version = "4.0.0" }
contract-metadata = { version = "4.0.0" }
contract-transcode = { version = "4.0.0" }
convert_case = { version = "0.6.0" }
crossterm = { version = "0.26.0" }
darling = { version = "0.20.3" }
Expand Down Expand Up @@ -58,5 +58,5 @@ sp-runtime-interface = { version = "26.0.0" }

# Local dependencies

drink = { version = "=0.13.0", path = "drink" }
drink-test-macro = { version = "=0.13.0", path = "drink/test-macro" }
drink = { version = "=0.14.0", path = "drink" }
drink-test-macro = { version = "=0.14.0", path = "drink/test-macro" }
2 changes: 1 addition & 1 deletion examples/chain-extension/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version = "0.1.0"
path = "src/lib.rs"

[dependencies]
ink = { version = "=5.0.0-rc.3", default-features = false }
ink = { version = "=5.0.0", default-features = false }

scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
scale-info = { version = "2.6", default-features = false, features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/contract-events/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version = "0.1.0"
path = "lib.rs"

[dependencies]
ink = { version = "=5.0.0-rc.3", default-features = false }
ink = { version = "=5.0.0", default-features = false }

scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
scale-info = { version = "2.6", default-features = false, features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/cross-contract-call-tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = "https://github.com/Cardinal-Cryptography/drink"
version = "0.1.0"

[dependencies]
ink = { version = "=5.0.0-rc.3", default-features = false }
ink = { version = "=5.0.0", default-features = false }

scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
scale-info = { version = "2.6", default-features = false, features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/dry-running/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = "https://github.com/Cardinal-Cryptography/drink"
version = "0.1.0"

[dependencies]
ink = { version = "=5.0.0-rc.3", default-features = false }
ink = { version = "=5.0.0", default-features = false }

[dev-dependencies]
drink = { path = "../../drink" }
Expand Down
2 changes: 1 addition & 1 deletion examples/flipper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = "https://github.com/Cardinal-Cryptography/drink"
version = "0.1.0"

[dependencies]
ink = { version = "=5.0.0-rc.3", default-features = false, features = ["ink-debug"] }
ink = { version = "=5.0.0", default-features = false, features = ["ink-debug"] }

scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
scale-info = { version = "2.6", default-features = false, features = ["derive"], optional = true }
Expand Down
Loading

0 comments on commit da53d56

Please sign in to comment.