Skip to content

Commit

Permalink
Release v4.0.0-rc.1 (#1418)
Browse files Browse the repository at this point in the history
  • Loading branch information
smiasojed authored Dec 1, 2023
1 parent cb8c038 commit fcaa018
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 45 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.0.0-rc.1]

### Changed
- Run wasm-opt first, remove sign_ext feature - [#1416](https://github.com/paritytech/cargo-contract/pull/1416)

## [4.0.0-rc]

### Added
Expand Down
56 changes: 28 additions & 28 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/analyze/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract-analyze"
version = "4.0.0-rc"
version = "4.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand All @@ -14,7 +14,7 @@ keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
include = ["Cargo.toml", "*.rs", "LICENSE"]

[dependencies]
contract-metadata = { version = "4.0.0-rc", path = "../metadata" }
contract-metadata = { version = "4.0.0-rc.1", path = "../metadata" }
parity-wasm = { version = "0.45.0" }
anyhow = "1.0.75"

Expand Down
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 = "4.0.0-rc"
version = "4.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down Expand Up @@ -44,7 +44,7 @@ tokio-stream = "0.1"
bollard = "0.15"
crossterm = "0.27.0"

contract-metadata = { version = "4.0.0-rc", path = "../metadata" }
contract-metadata = { version = "4.0.0-rc.1", path = "../metadata" }

[target.'cfg(unix)'.dependencies]
users = "0.11"
Expand Down
12 changes: 6 additions & 6 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 = "4.0.0-rc"
version = "4.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"
edition = "2021"
Expand All @@ -18,11 +18,11 @@ include = [
]

[dependencies]
contract-build = { version = "4.0.0-rc", path = "../build" }
contract-extrinsics = { version = "4.0.0-rc", path = "../extrinsics" }
contract-transcode = { version = "4.0.0-rc", path = "../transcode" }
contract-metadata = { version = "4.0.0-rc", path = "../metadata" }
contract-analyze = { version = "4.0.0-rc", path = "../analyze" }
contract-build = { version = "4.0.0-rc.1", path = "../build" }
contract-extrinsics = { version = "4.0.0-rc.1", path = "../extrinsics" }
contract-transcode = { version = "4.0.0-rc.1", path = "../transcode" }
contract-metadata = { version = "4.0.0-rc.1", path = "../metadata" }
contract-analyze = { version = "4.0.0-rc.1", path = "../analyze" }

anyhow = "1.0.75"
clap = { version = "4.4.10", features = ["derive", "env"] }
Expand Down
8 changes: 4 additions & 4 deletions crates/extrinsics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract-extrinsics"
version = "4.0.0-rc"
version = "4.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -15,9 +15,9 @@ keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
include = ["Cargo.toml", "*.rs", "LICENSE",]

[dependencies]
contract-build = { version = "4.0.0-rc", path = "../build" }
contract-metadata = { version = "4.0.0-rc", path = "../metadata" }
contract-transcode = { version = "4.0.0-rc", path = "../transcode" }
contract-build = { version = "4.0.0-rc.1", path = "../build" }
contract-metadata = { version = "4.0.0-rc.1", path = "../metadata" }
contract-transcode = { version = "4.0.0-rc.1", path = "../transcode" }

anyhow = "1.0.75"
blake2 = { version = "0.10.6", default-features = false }
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 = "4.0.0-rc"
version = "4.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
3 changes: 3 additions & 0 deletions crates/metadata/compatibility_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
},
"4.0.0-rc": {
"ink": ["5.0.0-alpha", "5.0.0"]
},
"4.0.0-rc.1": {
"ink": ["5.0.0-alpha", "5.0.0"]
}
}
}
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 = "4.0.0-rc"
version = "4.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand All @@ -20,7 +20,7 @@ path = "src/lib.rs"
anyhow = "1.0.75"
base58 = { version = "0.2.0" }
blake2 = { version = "0.10.6", default-features = false }
contract-metadata = { version = "4.0.0-rc", path = "../metadata" }
contract-metadata = { version = "4.0.0-rc.1", path = "../metadata" }
escape8259 = "0.5.2"
hex = "0.4.3"
indexmap = "2.1.0"
Expand Down

0 comments on commit fcaa018

Please sign in to comment.