Skip to content

Commit

Permalink
Release cargo-contract 2.0.1 (#975)
Browse files Browse the repository at this point in the history
* Bump all version to `2.0.1`

* Update `CHANGELOG.md`

* Update `Cargo.lock`

* Improve wording

* Update changelog
  • Loading branch information
cmichi authored Feb 20, 2023
1 parent a74d4e4 commit dc3d68c
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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).

## [2.0.1]

### Fixed
- Return correct contract id for `instantiate` command with subcontracts ‒ [#777](https://github.com/paritytech/cargo-contract/pull/777)
- Bump template to ink! 4.0 ‒ [#971](https://github.com/paritytech/cargo-contract/pull/971)

## [2.0.0]

Major release compatible with `ink! 4.0.0`. All the changes in aggregate since `1.5`:
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract-build"
version = "2.0.0"
version = "2.0.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down Expand Up @@ -36,7 +36,7 @@ wasm-opt = "0.111.0"
which = "4.4.0"
zip = { version = "0.6.4", default-features = false }

contract-metadata = { version = "2.0.0", path = "../metadata" }
contract-metadata = { version = "2.0.1", path = "../metadata" }

[build-dependencies]
anyhow = "1.0.69"
Expand Down
8 changes: 4 additions & 4 deletions crates/cargo-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-contract"
version = "2.0.0"
version = "2.0.1"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
edition = "2021"
Expand All @@ -18,9 +18,9 @@ include = [
]

[dependencies]
contract-build = { version = "2.0.0", path = "../build" }
contract-metadata = { version = "2.0.0", path = "../metadata" }
contract-transcode = { version = "2.0.0", path = "../transcode" }
contract-build = { version = "2.0.1", path = "../build" }
contract-metadata = { version = "2.0.1", path = "../metadata" }
contract-transcode = { version = "2.0.1", path = "../transcode" }

anyhow = "1.0.69"
clap = { version = "4.1.6", features = ["derive", "env"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract-metadata"
version = "2.0.0"
version = "2.0.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
4 changes: 2 additions & 2 deletions crates/transcode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract-transcode"
version = "2.0.0"
version = "2.0.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand All @@ -18,7 +18,7 @@ path = "src/lib.rs"

[dependencies]
anyhow = "1.0.69"
contract-metadata = { version = "2.0.0", path = "../metadata" }
contract-metadata = { version = "2.0.1", path = "../metadata" }
escape8259 = "0.5.2"
hex = "0.4.3"
indexmap = "1.9.2"
Expand Down

0 comments on commit dc3d68c

Please sign in to comment.