Skip to content

Commit

Permalink
Release v2.0.0 alpha.5 (#801)
Browse files Browse the repository at this point in the history
* Bump versions

* Update CHANGELOG.md
  • Loading branch information
ascjones authored Oct 27, 2022
1 parent e2e804b commit 0bff2a7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.0-alpha.5] - 2022-10-27

### Added
- Add Rust specific build info to metadata - [#680](https://github.com/paritytech/cargo-contract/pull/680)

### Changed
- Removed requirement to install binaryen. The `wasm-opt` tool is now compiled into `cargo-contract`.
- Removed requirement to install binaryen. The `wasm-opt` tool is now compiled into `cargo-contract` - [#766](https://github.com/paritytech/cargo-contract/pull/766).
- Make linting opt in with `--lint` - [#799](https://github.com/paritytech/cargo-contract/pull/799)

### Fixed
- Log failure instead of failing when decoding an event - [#769](https://github.com/paritytech/cargo-contract/pull/769)

## [2.0.0-alpha.4] - 2022-10-03

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 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-alpha.4"
version = "2.0.0-alpha.5"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
edition = "2021"
Expand Down Expand Up @@ -32,8 +32,8 @@ colored = "2.0.0"
toml = "0.5.9"
rustc_version = "0.4.0"
blake2 = "0.10.4"
contract-metadata = { version = "2.0.0-alpha.4", path = "../metadata" }
transcode = { package = "contract-transcode", version = "2.0.0-alpha.4", path = "../transcode" }
contract-metadata = { version = "2.0.0-alpha.5", path = "../metadata" }
transcode = { package = "contract-transcode", version = "2.0.0-alpha.5", path = "../transcode" }
semver = { version = "1.0.14", features = ["serde"] }
serde = { version = "1.0.147", default-features = false, features = ["derive"] }
serde_json = "1.0.87"
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-alpha.4"
version = "2.0.0-alpha.5"
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-alpha.4"
version = "2.0.0-alpha.5"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

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

[dependencies]
anyhow = "1.0.66"
contract-metadata = { version = "2.0.0-alpha.4", path = "../metadata" }
contract-metadata = { version = "2.0.0-alpha.5", path = "../metadata" }
env_logger = "0.9.1"
escape8259 = "0.5.2"
hex = "0.4.3"
Expand Down

0 comments on commit 0bff2a7

Please sign in to comment.