Skip to content

Commit

Permalink
Release v2.2.0 (#1091)
Browse files Browse the repository at this point in the history
* Bump versions

* CHANGELOG.md

* Cargo.lock

* Update h2 in dep in Cargo.lock
  • Loading branch information
ascjones authored Apr 27, 2023
1 parent 3784a10 commit e731ea7
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 17 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.0]

### Added
- Add `info` command - [#993](https://github.com/paritytech/cargo-contract/pull/993)
- Add `--output-json` flag for `info` command - [#1007](https://github.com/paritytech/cargo-contract/pull/1007)

### Changed
- Minimum requirements of `ink!` dependencies all updated to `4.1.0` - [#1045](https://github.com/paritytech/cargo-contract/pull/1045)
- Minimum requirements of `ink!` dependencies all updated to `4.2.0` - [#1084](https://github.com/paritytech/cargo-contract/pull/1084)
- Upgrade `subxt` to `0.28` [#1039](https://github.com/paritytech/cargo-contract/pull/1039)
- Upgrade `scale-info` to `2.5` [#1057](https://github.com/paritytech/cargo-contract/pull/1057)

### Fixed
- Rewrites build file path in manifest [#1077](https://github.com/paritytech/cargo-contract/pull/1077)
- Only copy and rewrite target contract manifest [#1079](https://github.com/paritytech/cargo-contract/pull/1079)


### [2.1.0]
## [2.1.0]

### Changed
- Dry-run `instantiate`, `call` and `upload` commands by default - [#999](https://github.com/paritytech/cargo-contract/pull/999)
Expand All @@ -32,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Explicitly enable `std` feature for metadata generation [#977](https://github.com/paritytech/cargo-contract/pull/977)
- Return artifact paths when contracts unchanged [#992](https://github.com/paritytech/cargo-contract/pull/992)
-
- Minimum requirements of `ink!` dependencies all updated to `4.0.1`

## [2.0.1]
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.1.0"
version = "2.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

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

contract-metadata = { version = "2.1.0", path = "../metadata" }
contract-metadata = { version = "2.2.0", path = "../metadata" }

[build-dependencies]
anyhow = "1.0.70"
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.1.0"
version = "2.2.0"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
edition = "2021"
Expand All @@ -18,9 +18,9 @@ include = [
]

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

anyhow = "1.0.70"
clap = { version = "4.2.4", 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.1.0"
version = "2.2.0"
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.1.0"
version = "2.2.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand All @@ -20,7 +20,7 @@ path = "src/lib.rs"
anyhow = "1.0.70"
base58 = { version = "0.2.0" }
blake2 = { version = "0.10.4", default-features = false }
contract-metadata = { version = "2.1.0", path = "../metadata" }
contract-metadata = { version = "2.2.0", path = "../metadata" }
escape8259 = "0.5.2"
hex = "0.4.3"
indexmap = "1.9.3"
Expand Down

0 comments on commit e731ea7

Please sign in to comment.