Skip to content

Commit

Permalink
Release v2.0.0-beta.2 (#899)
Browse files Browse the repository at this point in the history
* Prepare 2.0.0-beta.2 release

* Fix link to PR
  • Loading branch information
ascjones authored Jan 10, 2023
1 parent 0b830d0 commit d0f5569
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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.0-beta.2] - 2023-01-09

### Changed
- Upgrade wasm-opt to 0.111.0 [#888](https://github.com/paritytech/cargo-contract/pull/888)
- Enable `wasm-opt` MVP features only [#891](https://github.com/paritytech/cargo-contract/pull/891)
- Require env_type transcoders to be Send + Sync [#879](https://github.com/paritytech/cargo-contract/pull/879)

### Fixed
- Add determinism arg to upload TX [#870](https://github.com/paritytech/cargo-contract/pull/870)

## [2.0.0-beta.1] - 2022-12-07

### Changed
Expand Down
8 changes: 4 additions & 4 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-beta.1"
version = "2.0.0-beta.2"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

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

contract-metadata = { version = "2.0.0-beta.1", path = "../metadata" }
contract-metadata = { version = "2.0.0-beta.2", path = "../metadata" }

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

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

anyhow = "1.0.68"
clap = { version = "4.0.32", 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-beta.1"
version = "2.0.0-beta.2"
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-beta.1"
version = "2.0.0-beta.2"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

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

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

0 comments on commit d0f5569

Please sign in to comment.