Skip to content

Commit 226c0e6

Browse files
authored
Release 6.0.0-alpha.3 (#2130)
* Update version numbers * Update compatibility list * Update changelog * Update changelog * Update `Cargo.lock`
1 parent db7ade0 commit 226c0e6

File tree

12 files changed

+72
-58
lines changed

12 files changed

+72
-58
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
[Unreleased]
88

9+
## [6.0.0-alpha.3]
10+
11+
Compatibility of this release:
12+
13+
* Rust >= 1.88
14+
* [ink! `v6.0.0-alpha.3`](https://github.com/use-ink/ink/releases/tag/v6.0.0-alpha.3)
15+
* [`ink-node` `v0.45.1`](https://github.com/use-ink/ink-node/releases/tag/v0.45.1)
16+
* [`polkadot-sdk` from `use-ink/polkadot-sdk/a71ec19a94702ea71767ba5ac97603ea6c6305c1`](https://github.com/use-ink/polkadot-sdk/tree/pallet-revive-with-system-and-storage-precompiles)
17+
18+
We have to use a slight fork of `polkadot-sdk` for the moment. It's just `polkadot-sdk/master` plus two
19+
commits on top with pre-compiles. Those two commits are PRs to `polkadot-sdk`. but haven't been merged yet.
20+
921
### Changed
1022
- Upgrade to `subxt` `0.44`[2127](https://github.com/use-ink/cargo-contract/pull/2127)
1123
- Synchronized with `polkadot-sdk/c40b36c3a7c208f9a6837b80812473af3d9ba7f7`[2102](https://github.com/use-ink/cargo-contract/pull/2102)

Cargo.lock

Lines changed: 30 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ members = ["crates/*"]
66
rust-version = "1.88"
77

88
[workspace.dependencies]
9-
ink_metadata = { git = "https://github.com/use-ink/ink", branch = "master", version = "6.0.0-alpha.1", default-features = false, features = ["std", "derive"] }
10-
ink_env = { git = "https://github.com/use-ink/ink", branch = "master", version = "6.0.0-alpha.1", features = ["unstable-hostfn"] }
9+
ink_metadata = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.3", version = "6.0.0-alpha.3", default-features = false, features = ["std", "derive"] }
10+
ink_env = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.3", version = "6.0.0-alpha.3", features = ["unstable-hostfn"] }

crates/analyze/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contract-analyze"
3-
version = "6.0.0-alpha.1"
3+
version = "6.0.0-alpha.3"
44
authors = ["Use Ink <[email protected]>"]
55
edition = "2024"
66

@@ -14,5 +14,5 @@ keywords = ["polkavm", "ink", "riscv", "blockchain", "edsl"]
1414
include = ["Cargo.toml", "*.rs", "LICENSE"]
1515

1616
[dependencies]
17-
contract-metadata = { version = "6.0.0-alpha.1", path = "../metadata" }
17+
contract-metadata = { version = "6.0.0-alpha.3", path = "../metadata" }
1818
anyhow = "1.0.98"

crates/build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contract-build"
3-
version = "6.0.0-alpha.1"
3+
version = "6.0.0-alpha.3"
44
authors = ["Use Ink <[email protected]>"]
55
edition = "2024"
66

@@ -47,7 +47,7 @@ alloy-json-abi = "1.3.1"
4747

4848
polkavm-linker = { git = "https://github.com/paritytech/polkavm.git" }
4949

50-
contract-metadata = { version = "6.0.0-alpha.1", path = "../metadata" }
50+
contract-metadata = { version = "6.0.0-alpha.3", path = "../metadata" }
5151
ink_metadata = { workspace = true }
5252
sha3 = "0.10.8"
5353

crates/build/templates/new/_Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ authors = ["[your_name] <[your_email]>"]
55
edition = "2024"
66

77
[dependencies]
8-
ink = { git = "https://github.com/use-ink/ink", branch = "master", version = "6.0.0-alpha.1", default-features = false, features = ["unstable-hostfn"] }
8+
ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.3", version = "6.0.0-alpha.3", default-features = false, features = ["unstable-hostfn"] }
99

1010
[dev-dependencies]
11-
ink_e2e = { git = "https://github.com/use-ink/ink", branch = "master", version = "6.0.0-alpha.1" }
11+
ink_e2e = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.3", version = "6.0.0-alpha.3" }
1212

1313
[lib]
1414
path = "lib.rs"

crates/cargo-contract/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-contract"
3-
version = "6.0.0-alpha.1"
3+
version = "6.0.0-alpha.3"
44
authors = ["Use Ink <[email protected]>"]
55
build = "build.rs"
66
edition = "2024"
@@ -18,11 +18,11 @@ include = [
1818
]
1919

2020
[dependencies]
21-
contract-build = { version = "6.0.0-alpha.1", path = "../build" }
22-
contract-extrinsics = { version = "6.0.0-alpha.1", path = "../extrinsics" }
23-
contract-transcode = { version = "6.0.0-alpha.1", path = "../transcode" }
24-
contract-metadata = { version = "6.0.0-alpha.1", path = "../metadata" }
25-
contract-analyze = { version = "6.0.0-alpha.1", path = "../analyze" }
21+
contract-build = { version = "6.0.0-alpha.3", path = "../build" }
22+
contract-extrinsics = { version = "6.0.0-alpha.3", path = "../extrinsics" }
23+
contract-transcode = { version = "6.0.0-alpha.3", path = "../transcode" }
24+
contract-metadata = { version = "6.0.0-alpha.3", path = "../metadata" }
25+
contract-analyze = { version = "6.0.0-alpha.3", path = "../analyze" }
2626

2727
anyhow = "1.0.98"
2828
clap = { version = "4.5.40", features = ["derive", "env"] }

crates/extrinsics/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contract-extrinsics"
3-
version = "6.0.0-alpha.1"
3+
version = "6.0.0-alpha.3"
44
authors = ["Use Ink <[email protected]>"]
55
edition = "2024"
66
rust-version.workspace = true
@@ -15,9 +15,9 @@ keywords = ["polkavm", "ink", "riscv", "blockchain", "edsl"]
1515
include = ["Cargo.toml", "*.rs", "LICENSE"]
1616

1717
[dependencies]
18-
contract-build = { version = "6.0.0-alpha.1", path = "../build" }
19-
contract-metadata = { version = "6.0.0-alpha.1", path = "../metadata" }
20-
contract-transcode = { version = "6.0.0-alpha.1", path = "../transcode" }
18+
contract-build = { version = "6.0.0-alpha.3", path = "../build" }
19+
contract-metadata = { version = "6.0.0-alpha.3", path = "../metadata" }
20+
contract-transcode = { version = "6.0.0-alpha.3", path = "../transcode" }
2121

2222
anyhow = "1.0.98"
2323
blake2 = { version = "0.10.6", default-features = false }
@@ -46,7 +46,7 @@ ink_metadata = { workspace = true }
4646
ink_env = { workspace = true }
4747

4848
[dev-dependencies]
49-
ink = { git = "https://github.com/use-ink/ink", branch = "master", features = ["unstable-hostfn"], version = "6.0.0-alpha.1" }
49+
ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.3", features = ["unstable-hostfn"], version = "6.0.0-alpha.3" }
5050
assert_cmd = "2.0.17"
5151
regex = "1.11.1"
5252
predicates = "3.1.3"

crates/metadata/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contract-metadata"
3-
version = "6.0.0-alpha.1"
3+
version = "6.0.0-alpha.3"
44
authors = ["Use Ink <[email protected]>"]
55
edition = "2024"
66

crates/metadata/compatibility_list.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@
4141
},
4242
"6.0.0-alpha.1": {
4343
"ink": [
44-
">=6.0.0-alpha.1"
44+
">=6.0.0-alpha.1, <6.0.0-alpha.3"
45+
]
46+
},
47+
"6.0.0-alpha.3": {
48+
"ink": [
49+
">=6.0.0-alpha.3"
4550
]
4651
}
4752
}

0 commit comments

Comments
 (0)