Skip to content

Commit 5dee03c

Browse files
authored
Release 6.0.0-alpha.3 (#2630)
* Bump version to `6.0.0-alpha.3` * Update changelog * Add compatibility notes to changelog
1 parent d543522 commit 5dee03c

File tree

78 files changed

+150
-138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+150
-138
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+
## Version 6.0.0-alpha.3
10+
11+
Compatibility of this release:
12+
13+
* Rust >= 1.88
14+
* [`cargo-contract` `v6.0.0-alpha.3`](https://github.com/use-ink/cargo-contract/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
### Added
1022
- Support functions of the `Storage` and `System` pre-compiles ‒ [2619](https://github.com/use-ink/ink/pull/2619)
1123

Cargo.lock

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

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ homepage = "https://use.ink"
3030
keywords = ["polkavm", "ink", "riscv", "blockchain", "edsl"]
3131
license = "Apache-2.0"
3232
repository = "https://github.com/use-ink/ink"
33-
version = "6.0.0-alpha.1"
33+
version = "6.0.0-alpha.3"
3434
rust-version = "1.88"
3535

3636
[workspace.dependencies]
@@ -110,19 +110,19 @@ keccak-const = "0.2.0"
110110
impl-trait-for-tuples = "0.2.3"
111111

112112
# Local dependencies
113-
ink = { version = "=6.0.0-alpha.1", path = "crates/ink", default-features = false }
114-
ink_allocator = { version = "=6.0.0-alpha.1", path = "crates/allocator", default-features = false }
115-
ink_codegen = { version = "=6.0.0-alpha.1", path = "crates/ink/codegen", default-features = false }
116-
ink_e2e_macro = { version = "=6.0.0-alpha.1", path = "crates/e2e/macro", default-features = false }
117-
ink_engine = { version = "=6.0.0-alpha.1", path = "crates/engine", default-features = false }
118-
ink_env = { version = "=6.0.0-alpha.1", path = "crates/env", default-features = false }
119-
ink_ir = { version = "=6.0.0-alpha.1", path = "crates/ink/ir", default-features = false }
120-
ink_macro = { version = "=6.0.0-alpha.1", path = "crates/ink/macro", default-features = false }
121-
ink_metadata = { version = "=6.0.0-alpha.1", path = "crates/metadata", default-features = false }
122-
ink_prelude = { version = "=6.0.0-alpha.1", path = "crates/prelude", default-features = false }
123-
ink_primitives = { version = "=6.0.0-alpha.1", path = "crates/primitives", default-features = false }
124-
ink_storage = { version = "=6.0.0-alpha.1", path = "crates/storage", default-features = false }
125-
ink_storage_traits = { version = "=6.0.0-alpha.1", path = "crates/storage/traits", default-features = false }
113+
ink = { version = "=6.0.0-alpha.3", path = "crates/ink", default-features = false }
114+
ink_allocator = { version = "=6.0.0-alpha.3", path = "crates/allocator", default-features = false }
115+
ink_codegen = { version = "=6.0.0-alpha.3", path = "crates/ink/codegen", default-features = false }
116+
ink_e2e_macro = { version = "=6.0.0-alpha.3", path = "crates/e2e/macro", default-features = false }
117+
ink_engine = { version = "=6.0.0-alpha.3", path = "crates/engine", default-features = false }
118+
ink_env = { version = "=6.0.0-alpha.3", path = "crates/env", default-features = false }
119+
ink_ir = { version = "=6.0.0-alpha.3", path = "crates/ink/ir", default-features = false }
120+
ink_macro = { version = "=6.0.0-alpha.3", path = "crates/ink/macro", default-features = false }
121+
ink_metadata = { version = "=6.0.0-alpha.3", path = "crates/metadata", default-features = false }
122+
ink_prelude = { version = "=6.0.0-alpha.3", path = "crates/prelude", default-features = false }
123+
ink_primitives = { version = "=6.0.0-alpha.3", path = "crates/primitives", default-features = false }
124+
ink_storage = { version = "=6.0.0-alpha.3", path = "crates/storage", default-features = false }
125+
ink_storage_traits = { version = "=6.0.0-alpha.3", path = "crates/storage/traits", default-features = false }
126126

127127
[profile.release]
128128
panic = "abort"

crates/e2e/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ink_e2e_macro = { workspace = true, default-features = true }
1919
ink = { workspace = true, default-features = true }
2020
ink_env = { workspace = true, default-features = true }
2121
ink_primitives = { workspace = true, default-features = true }
22-
ink_sandbox = { version = "=6.0.0-alpha.1", path = "./sandbox", optional = true }
22+
ink_sandbox = { version = "=6.0.0-alpha.3", path = "./sandbox", optional = true }
2323

2424
cargo_metadata = { workspace = true }
2525
contract-build = { workspace = true }

crates/e2e/sandbox/Cargo.toml

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

crates/ink/codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
1818

1919
[dependencies]
2020
ink_primitives = { workspace = true }
21-
ir = { version = "=6.0.0-alpha.1", package = "ink_ir", path = "../ir", default-features = false }
21+
ir = { version = "=6.0.0-alpha.3", package = "ink_ir", path = "../ir", default-features = false }
2222
quote = { workspace = true }
2323
syn = { workspace = true, features = ["parsing", "full", "extra-traits"] }
2424
proc-macro2 = { workspace = true }

integration-tests/all-abi/events/Cargo.toml

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

0 commit comments

Comments
 (0)