Skip to content
Next Next commit
Release 5.0.0-rc.1
  • Loading branch information
SkymanOne committed Feb 8, 2024
commit c19a7fc39dd238f643b856c4b5dc802f0f502482
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## Version 5.0.0-rc.1

### Added
- Custom signature topic in Events - [#2031](https://github.com/paritytech/ink/pull/2031)
- [Linter] `non_fallible_api` lint - [#2004](https://github.com/paritytech/ink/pull/2004)
Expand Down
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,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-rc"
version = "5.0.0-rc.1"

[workspace.dependencies]
arrayref = { version = "0.3" }
Expand Down Expand Up @@ -91,19 +91,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-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 }
ink = { version = "=5.0.0-rc.1", path = "crates/ink", default-features = false }
ink_allocator = { version = "=5.0.0-rc.1", path = "crates/allocator", default-features = false }
ink_codegen = { version = "=5.0.0-rc.1", path = "crates/ink/codegen", default-features = false }
ink_e2e_macro = { version = "=5.0.0-rc.1", path = "crates/e2e/macro", default-features = false }
ink_engine = { version = "=5.0.0-rc.1", path = "crates/engine", default-features = false }
ink_env = { version = "=5.0.0-rc.1", path = "crates/env", default-features = false }
ink_ir = { version = "=5.0.0-rc.1", path = "crates/ink/ir", default-features = false }
ink_macro = { version = "=5.0.0-rc.1", path = "crates/ink/macro", default-features = false }
ink_metadata = { version = "=5.0.0-rc.1", path = "crates/metadata", default-features = false }
ink_prelude = { version = "=5.0.0-rc.1", path = "crates/prelude", default-features = false }
ink_primitives = { version = "=5.0.0-rc.1", path = "crates/primitives", default-features = false }
ink_storage = { version = "=5.0.0-rc.1", path = "crates/storage", default-features = false }
ink_storage_traits = { version = "=5.0.0-rc.1", 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-rc", package = "ink_ir", path = "../ir", default-features = false }
ir = { version = "=5.0.0-rc.1", 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/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-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/call-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "call-runtime"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/conditional-compilation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "conditional-compilation"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

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-rc"
version = "5.0.0-rc.1"
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-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/cross-contract-calls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cross-contract-calls"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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-rc"
version = "5.0.0-rc.1"
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-rc"
version = "5.0.0-rc.1"
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-rc"
version = "5.0.0-rc.1"
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-rc"
version = "5.0.0-rc.1"
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-rc"
version = "5.0.0-rc.1"
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-rc"
version = "5.0.0-rc.1"
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-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/erc20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "erc20"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/erc721/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "erc721"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "events"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/flipper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flipper"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/incrementer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "incrementer"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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 = "call_builder_delegate"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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 = "call_builder"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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 = "constructors_return_value"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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 = "contract_ref"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "integration_flipper"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/mapping-integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mapping-integration-tests"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/mother/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mother"
description = "Mother of all contracts"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/multi-contract-caller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multi-contract-caller"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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 = "accumulator"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/multi-contract-caller/adder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "adder"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subber"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/multisig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multisig"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/payment-channel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "payment_channel"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/psp22-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "psp22_extension"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/rand-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rand_extension"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/sr25519-verification/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sr25519_verification"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>", "George Oastler <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/static-buffer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "static-buffer"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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 = "trait-incrementer-caller"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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 = "trait-incrementer"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
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 = "dyn-traits"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/trait-erc20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trait_erc20"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/trait-flipper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trait_flipper"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/trait-incrementer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trait-incrementer"
version = "5.0.0-rc"
version = "5.0.0-rc.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
publish = false
Expand Down
Loading