-
Notifications
You must be signed in to change notification settings - Fork 455
Release v4.0.0
#1653
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
Merged
Release v4.0.0
#1653
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b5613ad
Bump version
ascjones 88e88e9
WIP update CHANGELOG.md
ascjones 76c927c
Add full 4.0 CHANGELOG
HCastano 5de9612
Add some external contributor shoutouts
HCastano 7087fe9
Add blurb and Compatibility section
HCastano 8ec2427
Insert compatible versions
ascjones a2f2e39
Add link to use.ink migration guide
ascjones 2d171c8
Merge branch 'master' into v4.0.0
ascjones 7afcc07
Use published version of contract-build 2.0.0
ascjones File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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-rc" | ||
version = "4.0.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains hidden or 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_e2e" | ||
version = "4.0.0-rc" | ||
version = "4.0.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,10 +15,10 @@ categories = ["no-std", "embedded"] | |
include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"] | ||
|
||
[dependencies] | ||
ink_e2e_macro = { version = "4.0.0-rc", path = "./macro" } | ||
ink = { version = "4.0.0-rc", path = "../ink" } | ||
ink_env = { version = "4.0.0-rc", path = "../env" } | ||
ink_primitives = { version = "4.0.0-rc", path = "../primitives" } | ||
ink_e2e_macro = { version = "4.0.0", path = "./macro" } | ||
ink = { version = "4.0.0", path = "../ink" } | ||
ink_env = { version = "4.0.0", path = "../env" } | ||
ink_primitives = { version = "4.0.0", path = "../primitives" } | ||
|
||
contract-metadata = { version = "2.0.0-rc.1" } | ||
funty = "2.0.0" | ||
|
This file contains hidden or 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_e2e_macro" | ||
version = "4.0.0-rc" | ||
version = "4.0.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -19,8 +19,8 @@ name = "ink_e2e_macro" | |
proc-macro = true | ||
|
||
[dependencies] | ||
ink_ir = { version = "4.0.0-rc", path = "../../ink/ir" } | ||
contract-build = "2.0.0-rc.1" | ||
ink_ir = { version = "4.0.0", path = "../../ink/ir" } | ||
contract-build = "2.0.0" | ||
derive_more = "0.99.17" | ||
env_logger = "0.10.0" | ||
log = "0.4.17" | ||
|
This file contains hidden or 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-rc" | ||
version = "4.0.0" | ||
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 = { version = "4.0.0-rc", path = "../../crates/primitives", default-features = false } | ||
ink_primitives = { version = "4.0.0", 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 hidden or 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-rc" | ||
version = "4.0.0" | ||
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-rc", path = "../metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_allocator = { version = "4.0.0-rc", path = "../allocator", default-features = false } | ||
ink_storage_traits = { version = "4.0.0-rc", path = "../storage/traits", default-features = false } | ||
ink_prelude = { version = "4.0.0-rc", path = "../prelude", default-features = false } | ||
ink_primitives = { version = "4.0.0-rc", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "4.0.0", path = "../metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_allocator = { version = "4.0.0", path = "../allocator", default-features = false } | ||
ink_storage_traits = { version = "4.0.0", path = "../storage/traits", default-features = false } | ||
ink_prelude = { version = "4.0.0", path = "../prelude", default-features = false } | ||
ink_primitives = { version = "4.0.0", 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-rc", path = "../engine/", optional = true } | ||
ink_engine = { version = "4.0.0", path = "../engine/", optional = true } | ||
|
||
# Hashes for the off-chain environment. | ||
sha2 = { version = "0.10", optional = true } | ||
|
This file contains hidden or 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-rc" | ||
version = "4.0.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.63" | ||
|
@@ -16,12 +16,12 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_env = { version = "4.0.0-rc", path = "../env", default-features = false } | ||
ink_storage = { version = "4.0.0-rc", path = "../storage", default-features = false } | ||
ink_primitives = { version = "4.0.0-rc", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "4.0.0-rc", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "4.0.0-rc", path = "../prelude", default-features = false } | ||
ink_macro = { version = "4.0.0-rc", path = "macro", default-features = false } | ||
ink_env = { version = "4.0.0", path = "../env", default-features = false } | ||
ink_storage = { version = "4.0.0", path = "../storage", default-features = false } | ||
ink_primitives = { version = "4.0.0", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "4.0.0", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "4.0.0", path = "../prelude", default-features = false } | ||
ink_macro = { version = "4.0.0", 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 hidden or 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-rc" | ||
version = "4.0.0" | ||
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-rc", path = "../../primitives" } | ||
ir = { version = "4.0.0-rc", package = "ink_ir", path = "../ir", default-features = false } | ||
ink_primitives = { version = "4.0.0", path = "../../primitives" } | ||
ir = { version = "4.0.0", 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 hidden or 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-rc" | ||
version = "4.0.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains hidden or 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-rc" | ||
version = "4.0.0" | ||
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-rc", path = "../ir", default-features = false } | ||
ink_codegen = { version = "4.0.0-rc", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "4.0.0-rc", path = "../../primitives/", default-features = false } | ||
ink_ir = { version = "4.0.0", path = "../ir", default-features = false } | ||
ink_codegen = { version = "4.0.0", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "4.0.0", path = "../../primitives/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } | ||
syn = "1" | ||
|
This file contains hidden or 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-rc" | ||
version = "4.0.0" | ||
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-rc", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "4.0.0-rc", path = "../primitives/", default-features = false } | ||
ink_prelude = { version = "4.0.0", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "4.0.0", path = "../primitives/", default-features = false } | ||
|
||
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } | ||
impl-serde = "0.4.0" | ||
|
This file contains hidden or 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-rc" | ||
version = "4.0.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
This file contains hidden or 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-rc" | ||
version = "4.0.0" | ||
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-rc", path = "../prelude/", default-features = false } | ||
ink_prelude = { version = "4.0.0", path = "../prelude/", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
scale-info = { version = "2.3", default-features = false, features = ["derive"], optional = true } | ||
xxhash-rust = { version = "0.8", features = ["const_xxh32"] } | ||
|
This file contains hidden or 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-rc" | ||
version = "4.0.0" | ||
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-rc", path = "../env/", default-features = false } | ||
ink_metadata = { version = "4.0.0-rc", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "4.0.0-rc", path = "../primitives/", default-features = false } | ||
ink_storage_traits = { version = "4.0.0-rc", path = "traits", default-features = false } | ||
ink_prelude = { version = "4.0.0-rc", path = "../prelude/", default-features = false } | ||
ink_env = { version = "4.0.0", path = "../env/", default-features = false } | ||
ink_metadata = { version = "4.0.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "4.0.0", path = "../primitives/", default-features = false } | ||
ink_storage_traits = { version = "4.0.0", path = "traits", default-features = false } | ||
ink_prelude = { version = "4.0.0", 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"] } | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.