Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

5.0.0-rc Release #2011

Merged
merged 5 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## Version 5.0.0-rc

### Added
- Allow mutable parameters in messages - [#2004](https://github.com/paritytech/ink/pull/2004)
- [E2E] Allow testing with live-chain state - [#1949](https://github.com/paritytech/ink/pull/1949)
Expand All @@ -18,7 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Provide a `StorageVec` datastructure built on top of `Lazy` - [#1995](https://github.com/paritytech/ink/pull/1955)

### Changed
- Messages return `TypeSpec` directly - #[1999](https://github.com/paritytech/ink/pull/1999)
- Messages return `TypeSpec` directly - [#1999](https://github.com/paritytech/ink/pull/1999)
- Fail when decoding from storage and not all bytes consumed - [#1897](https://github.com/paritytech/ink/pull/1897)
- [E2E] resolve DispatchError error details for dry-runs - [#1944](https://github.com/paritytech/ink/pull/1994)
- [E2E] update to new `drink` API - [#2005](https://github.com/paritytech/ink/pull/2005)
Expand Down
86 changes: 43 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ homepage = "https://www.parity.io/"
keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"]
license = "Apache-2.0"
repository = "https://github.com/paritytech/ink"
version = "5.0.0-alpha"
version = "5.0.0-rc"

[workspace.dependencies]
arrayref = { version = "0.3" }
Expand Down Expand Up @@ -89,19 +89,19 @@ sp-runtime = { version = "26.0.0", default-features = false }
sp-weights = { version = "22.0.0", default-features = false }

# Local dependencies
ink = { version = "=5.0.0-alpha", path = "crates/ink", default-features = false }
ink_allocator = { version = "=5.0.0-alpha", path = "crates/allocator", default-features = false }
ink_codegen = { version = "=5.0.0-alpha", path = "crates/ink/codegen", default-features = false }
ink_e2e_macro = { version = "=5.0.0-alpha", path = "crates/e2e/macro", default-features = false }
ink_engine = { version = "=5.0.0-alpha", path = "crates/engine", default-features = false }
ink_env = { version = "=5.0.0-alpha", path = "crates/env", default-features = false }
ink_ir = { version = "=5.0.0-alpha", path = "crates/ink/ir", default-features = false }
ink_macro = { version = "=5.0.0-alpha", path = "crates/ink/macro", default-features = false }
ink_metadata = { version = "=5.0.0-alpha", path = "crates/metadata", default-features = false }
ink_prelude = { version = "=5.0.0-alpha", path = "crates/prelude", default-features = false }
ink_primitives = { version = "=5.0.0-alpha", path = "crates/primitives", default-features = false }
ink_storage = { version = "=5.0.0-alpha", path = "crates/storage", default-features = false }
ink_storage_traits = { version = "=5.0.0-alpha", path = "crates/storage/traits", default-features = false }
ink = { version = "=5.0.0-rc", path = "crates/ink", default-features = false }
ink_allocator = { version = "=5.0.0-rc", path = "crates/allocator", default-features = false }
ink_codegen = { version = "=5.0.0-rc", path = "crates/ink/codegen", default-features = false }
ink_e2e_macro = { version = "=5.0.0-rc", path = "crates/e2e/macro", default-features = false }
ink_engine = { version = "=5.0.0-rc", path = "crates/engine", default-features = false }
ink_env = { version = "=5.0.0-rc", path = "crates/env", default-features = false }
ink_ir = { version = "=5.0.0-rc", path = "crates/ink/ir", default-features = false }
ink_macro = { version = "=5.0.0-rc", path = "crates/ink/macro", default-features = false }
ink_metadata = { version = "=5.0.0-rc", path = "crates/metadata", default-features = false }
ink_prelude = { version = "=5.0.0-rc", path = "crates/prelude", default-features = false }
ink_primitives = { version = "=5.0.0-rc", path = "crates/primitives", default-features = false }
ink_storage = { version = "=5.0.0-rc", path = "crates/storage", default-features = false }
ink_storage_traits = { version = "=5.0.0-rc", path = "crates/storage/traits", default-features = false }

[profile.release]
panic = "abort"
Expand Down
2 changes: 1 addition & 1 deletion crates/ink/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ name = "ink_codegen"

[dependencies]
ink_primitives = { workspace = true }
ir = { version = "=5.0.0-alpha", package = "ink_ir", path = "../ir", default-features = false }
ir = { version = "=5.0.0-rc", package = "ink_ir", path = "../ir", default-features = false }
quote = { workspace = true }
syn = { workspace = true, features = ["parsing", "full", "extra-traits"] }
proc-macro2 = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/basic-contract-caller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "basic-contract-caller"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "other-contract"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/call-builder-return-value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "call_builder_return_value"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/combined-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "combined_extension"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/contract-terminate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract_terminate"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/contract-transfer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract_transfer"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/custom-allocator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "custom-allocator"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/custom-environment/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "custom-environment"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/dns/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dns"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/e2e-call-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "e2e_call_runtime"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/e2e-runtime-only-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "e2e-runtime-only-backend"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/erc1155/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "erc1155"
version = "5.0.0-alpha"
version = "5.0.0-rc"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
Loading