Skip to content

Commit

Permalink
Release v2.0.0-alpha.3 (#753)
Browse files Browse the repository at this point in the history
* Update CHANGELOG.md

* use latest release tag for linting

* (cargo-release) version 2.0.0-alpha.3

* (cargo-release) version 2.0.0-alpha.3

* (cargo-release) version 2.0.0-alpha.3

* Update intra crate dependency version

* Note to release notes

* Update template
  • Loading branch information
ascjones authored Sep 22, 2022
1 parent 94cf3c5 commit 0e4a286
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,19 @@ 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-alpha.3] - 2022-09-21

This release supports compatibility with the [`v4.0.0-alpha.3`](https://github.com/paritytech/ink/releases/tag/v4.0.0-alpha.3)
release of `ink!`. It is *not* backwards compatible with older versions of `ink!`.

### Added
- `--output-json` support for `call`, `instantiate` and `upload` commands - [#722](https://github.com/paritytech/cargo-contract/pull/722)
- Use new ink entrance crate - [#728](https://github.com/paritytech/cargo-contract/pull/728)

### Fixed
- Skip linting if running building in --offline mode - [#737](https://github.com/paritytech/cargo-contract/pull/737)

## [2.0.0-alpha.2] - 2022-09-02

### 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.2"
version = "2.0.0-alpha.3"
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.2", path = "../metadata" }
transcode = { package = "contract-transcode", version = "2.0.0-alpha.2", path = "../transcode" }
contract-metadata = { version = "2.0.0-alpha.3", path = "../metadata" }
transcode = { package = "contract-transcode", version = "2.0.0-alpha.3", path = "../transcode" }
semver = { version = "1.0.14", features = ["serde"] }
serde = { version = "1.0.144", default-features = false, features = ["derive"] }
serde_json = "1.0.85"
Expand Down
2 changes: 1 addition & 1 deletion crates/cargo-contract/src/workspace/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ impl Manifest {
let ink_dylint = {
let mut map = value::Table::new();
map.insert("git".into(), "https://github.com/paritytech/ink/".into());
map.insert("branch".into(), "master".into());
map.insert("tag".into(), "v4.0.0-alpha.3".into());
map.insert("pattern".into(), "linting/".into());
value::Value::Table(map)
};
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.2"
version = "2.0.0-alpha.3"
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.2"
version = "2.0.0-alpha.3"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

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

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

0 comments on commit 0e4a286

Please sign in to comment.