-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump versions * Update CHANGELOG * Add Storage Rework detail * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md Co-authored-by: Michael Müller <[email protected]> * Update CHANGELOG.md Co-authored-by: Michael Müller <[email protected]> * Add reference to examples * Update CHANGELOG.md * Add version to ink_primitives Co-authored-by: Michael Müller <[email protected]>
- Loading branch information
Showing
38 changed files
with
83 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_allocator" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_engine" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Michael Müller <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,7 +15,7 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_primitives = { path = "../../crates/primitives", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.2", path = "../../crates/primitives", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_env" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,11 +15,11 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_metadata = { version = "4.0.0-alpha.1", path = "../metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_allocator = { version = "4.0.0-alpha.1", path = "../allocator", default-features = false } | ||
ink_storage_traits = { version = "4.0.0-alpha.1", path = "../storage/traits", default-features = false } | ||
ink_prelude = { version = "4.0.0-alpha.1", path = "../prelude", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.1", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "4.0.0-alpha.2", path = "../metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_allocator = { version = "4.0.0-alpha.2", path = "../allocator", default-features = false } | ||
ink_storage_traits = { version = "4.0.0-alpha.2", path = "../storage/traits", default-features = false } | ||
ink_prelude = { version = "4.0.0-alpha.2", path = "../prelude", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.2", path = "../primitives", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
|
@@ -33,7 +33,7 @@ static_assertions = "1.1" | |
rlibc = "1" | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
ink_engine = { version = "4.0.0-alpha.1", path = "../engine/", optional = true } | ||
ink_engine = { version = "4.0.0-alpha.2", path = "../engine/", optional = true } | ||
|
||
# Hashes for the off-chain environment. | ||
sha2 = { version = "0.10", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,12 +15,12 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_env = { version = "4.0.0-alpha.1", path = "../env", default-features = false } | ||
ink_storage = { version = "4.0.0-alpha.1", path = "../storage", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.1", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "4.0.0-alpha.1", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "4.0.0-alpha.1", path = "../prelude", default-features = false } | ||
ink_macro = { version = "4.0.0-alpha.1", path = "macro", default-features = false } | ||
ink_env = { version = "4.0.0-alpha.2", path = "../env", default-features = false } | ||
ink_storage = { version = "4.0.0-alpha.2", path = "../storage", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.2", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "4.0.0-alpha.2", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "4.0.0-alpha.2", path = "../prelude", default-features = false } | ||
ink_macro = { version = "4.0.0-alpha.2", path = "macro", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_codegen" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -18,8 +18,8 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | |
name = "ink_codegen" | ||
|
||
[dependencies] | ||
ink_primitives = { version = "4.0.0-alpha.1", path = "../../primitives" } | ||
ir = { version = "4.0.0-alpha.1", package = "ink_ir", path = "../ir", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.2", path = "../../primitives" } | ||
ir = { version = "4.0.0-alpha.2", package = "ink_ir", path = "../ir", default-features = false } | ||
quote = "1" | ||
syn = { version = "1.0", features = ["parsing", "full", "extra-traits"] } | ||
proc-macro2 = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_ir" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_macro" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,9 +15,9 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_ir = { version = "4.0.0-alpha.1", path = "../ir", default-features = false } | ||
ink_codegen = { version = "4.0.0-alpha.1", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.1", path = "../../primitives/", default-features = false } | ||
ink_ir = { version = "4.0.0-alpha.2", path = "../ir", default-features = false } | ||
ink_codegen = { version = "4.0.0-alpha.2", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.2", path = "../../primitives/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } | ||
syn = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_metadata" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,8 +15,8 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_prelude = { version = "4.0.0-alpha.1", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.1", path = "../primitives/", default-features = false } | ||
ink_prelude = { version = "4.0.0-alpha.2", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "4.0.0-alpha.2", path = "../primitives/", default-features = false } | ||
|
||
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } | ||
impl-serde = "0.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_prelude" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_primitives" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -16,7 +16,7 @@ include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"] | |
|
||
[dependencies] | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
ink_prelude = { version = "4.0.0-alpha.1", path = "../prelude/", default-features = false } | ||
ink_prelude = { version = "4.0.0-alpha.2", path = "../prelude/", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
scale-info = { version = "2", default-features = false, features = ["derive"], optional = true } | ||
xxhash-rust = { version = "0.8", features = ["const_xxh32"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_storage" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,11 +15,11 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_env = { version = "4.0.0-alpha.1", path = "../env/", default-features = false } | ||
ink_metadata = { version = "4.0.0-alpha.1", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "4.0.0-alpha.1", path = "../primitives/", default-features = false } | ||
ink_storage_traits = { version = "4.0.0-alpha.1", path = "traits", default-features = false } | ||
ink_prelude = { version = "4.0.0-alpha.1", path = "../prelude/", default-features = false } | ||
ink_env = { version = "4.0.0-alpha.2", path = "../env/", default-features = false } | ||
ink_metadata = { version = "4.0.0-alpha.2", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "4.0.0-alpha.2", path = "../primitives/", default-features = false } | ||
ink_storage_traits = { version = "4.0.0-alpha.2", path = "traits", default-features = false } | ||
ink_prelude = { version = "4.0.0-alpha.2", path = "../prelude/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_storage_traits" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,16 +15,16 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_metadata = { version = "4.0.0-alpha.1", path = "../../metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "4.0.0-alpha.1", path = "../../primitives", default-features = false } | ||
ink_prelude = { version = "4.0.0-alpha.1", path = "../../prelude", default-features = false } | ||
ink_metadata = { version = "4.0.0-alpha.2", path = "../../metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "4.0.0-alpha.2", path = "../../primitives", default-features = false } | ||
ink_prelude = { version = "4.0.0-alpha.2", path = "../../prelude", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
scale-info = { version = "2", default-features = false, features = ["derive"], optional = true } | ||
syn = { version = "1", features = ["full"] } | ||
|
||
[dev-dependencies] | ||
paste = "1.0" | ||
ink_env = { version = "4.0.0-alpha.1", path = "../../env" } | ||
ink_env = { version = "4.0.0-alpha.2", path = "../../env" } | ||
|
||
[features] | ||
default = ["std"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "contract_terminate" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "contract_transfer" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "delegator" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "accumulator" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "adder" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subber" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dns" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "erc1155" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "erc20" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "erc721" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "flipper" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "incrementer" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "mother" | ||
description = "Mother of all contracts" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "multisig" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "payment_channel" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "psp22_extension" | ||
version = "4.0.0-alpha.1" | ||
version = "4.0.0-alpha.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
Oops, something went wrong.