Skip to content

Commit

Permalink
Release v2.0.0-beta.1 (#854)
Browse files Browse the repository at this point in the history
* Bump version

* Cargo.lock and CHANGELOG.md
  • Loading branch information
ascjones authored Dec 7, 2022
1 parent 6059a3a commit 1334df7
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 14 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,18 @@ 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).

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

### Changed
- Pass `--features` through to `cargo` - [#853](https://github.com/paritytech/cargo-contract/pull/853/files)
- Remove rust toolchain channel check - [#848](https://github.com/paritytech/cargo-contract/pull/848/files)
- Bump minimum requirement of `scale-info` in template to `2.3` - [#847](https://github.com/paritytech/cargo-contract/pull/847/files)
- Remove `unstable` module check, add `--skip-wasm-validation` - [#846](https://github.com/paritytech/cargo-contract/pull/846/files)
- Extract lib for invoking contract build - [#787](https://github.com/paritytech/cargo-contract/pull/787/files)

### Fixed
- Fixed having non-JSON output after calling `instantiate` with `--output-json` - [#839](https://github.com/paritytech/cargo-contract/pull/839/files)
- add `-C target-cpu=mvp` rust flag to build command - [#838](https://github.com/paritytech/cargo-contract/pull/838/files)

## [2.0.0-beta] - 2022-11-22

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"
version = "2.0.0-beta.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

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

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

[build-dependencies]
anyhow = "1.0.65"
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"
version = "2.0.0-beta.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-beta", path = "../build" }
contract-metadata = { version = "2.0.0-beta", path = "../metadata" }
contract-transcode = { version = "2.0.0-beta", path = "../transcode" }
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" }

anyhow = "1.0.66"
clap = { version = "4.0.29", 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"
version = "2.0.0-beta.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-beta"
version = "2.0.0-beta.1"
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-beta", path = "../metadata" }
contract-metadata = { version = "2.0.0-beta.1", path = "../metadata" }
escape8259 = "0.5.2"
hex = "0.4.3"
indexmap = "1.9.2"
Expand Down

0 comments on commit 1334df7

Please sign in to comment.