-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release: Bump versions to
0.33.0
(#750)
The functions attributes feature for JSON ABI breaks compatibility with 0.32 for the Sway compiler because of the changes in `fuels-types`, so the `fuels-rs` version should be corrected from 0.32.3 to 0.33.0.
- Loading branch information
1 parent
5c16dc9
commit fce0631
Showing
17 changed files
with
39 additions
and
39 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
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
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
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
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 = "fuels-abigen-macro" | ||
version = "0.32.3" | ||
version = "0.33.0" | ||
authors = ["Fuel Labs <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://fuel.network/" | ||
|
@@ -13,7 +13,7 @@ proc-macro = true | |
|
||
[dependencies] | ||
Inflector = "0.11" | ||
fuels-core = { version = "0.32.3", path = "../fuels-core" } | ||
fuels-core = { version = "0.33.0", path = "../fuels-core" } | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
rand = "0.8" | ||
|
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 = "fuels-contract" | ||
version = "0.32.3" | ||
version = "0.33.0" | ||
authors = ["Fuel Labs <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://fuel.network/" | ||
|
@@ -13,9 +13,9 @@ anyhow = "1" | |
bytes = { version = "1.0.1", features = ["serde"] } | ||
fuel-gql-client = { version = "0.15", default-features = false } | ||
fuel-tx = "0.23" | ||
fuels-core = { version = "0.32.3", path = "../fuels-core" } | ||
fuels-signers = { version = "0.32.3", path = "../fuels-signers" } | ||
fuels-types = { version = "0.32.3", path = "../fuels-types" } | ||
fuels-core = { version = "0.33.0", path = "../fuels-core" } | ||
fuels-signers = { version = "0.33.0", path = "../fuels-signers" } | ||
fuels-types = { version = "0.33.0", path = "../fuels-types" } | ||
futures = "0.3.21" | ||
hex = { version = "0.4.3", default-features = false, features = ["std"] } | ||
itertools = "0.10.3" | ||
|
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 = "fuels-core" | ||
version = "0.32.3" | ||
version = "0.33.0" | ||
authors = ["Fuel Labs <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://fuel.network/" | ||
|
@@ -13,7 +13,7 @@ Inflector = "0.11" | |
anyhow = "1" | ||
fuel-tx = "0.23" | ||
fuel-types = "0.5" | ||
fuels-types = { version = "0.32.3", path = "../fuels-types" } | ||
fuels-types = { version = "0.33.0", path = "../fuels-types" } | ||
hex = { version = "0.4.3", features = ["std"] } | ||
itertools = "0.10" | ||
proc-macro2 = "1.0" | ||
|
@@ -30,4 +30,4 @@ syn = "1.0.12" | |
thiserror = "1.0.30" | ||
|
||
[dev-dependencies] | ||
fuels-test-helpers = { version = "0.32.3", path = "../fuels-test-helpers" } | ||
fuels-test-helpers = { version = "0.33.0", path = "../fuels-test-helpers" } |
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 = "fuels-signers" | ||
version = "0.32.3" | ||
version = "0.33.0" | ||
authors = ["Fuel Labs <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://fuel.network/" | ||
|
@@ -18,8 +18,8 @@ fuel-core = { version = "0.15", default-features = false, optional = true } | |
fuel-crypto = { version = "0.6", features = ["random"] } | ||
fuel-gql-client = { version = "0.15", default-features = false } | ||
fuel-types = { version = "0.5", default-features = false, features = ["random"] } | ||
fuels-core = { version = "0.32.3", path = "../fuels-core" } | ||
fuels-types = { version = "0.32.3", path = "../fuels-types" } | ||
fuels-core = { version = "0.33.0", path = "../fuels-core" } | ||
fuels-types = { version = "0.33.0", path = "../fuels-types" } | ||
hex = { version = "0.4.3", default-features = false, features = ["std"] } | ||
itertools = "0.10" | ||
rand = { version = "0.8.4", default-features = 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 = "fuels-test-helpers" | ||
version = "0.32.3" | ||
version = "0.33.0" | ||
authors = ["Fuel Labs <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://fuel.network/" | ||
|
@@ -15,10 +15,10 @@ fuel-chain-config = { version = "0.15", default-features = false } | |
fuel-core-interfaces = { version = "0.15", default-features = false } | ||
fuel-gql-client = { version = "0.15", default-features = false } | ||
fuel-types = { version = "0.5", default-features = false, features = ["random"] } | ||
fuels-contract = { version = "0.32.3", path = "../fuels-contract" } | ||
fuels-core = { version = "0.32.3", path = "../fuels-core" } | ||
fuels-signers = { version = "0.32.3", path = "../fuels-signers", optional = true } | ||
fuels-types = { version = "0.32.3", path = "../fuels-types" } | ||
fuels-contract = { version = "0.33.0", path = "../fuels-contract" } | ||
fuels-core = { version = "0.33.0", path = "../fuels-core" } | ||
fuels-signers = { version = "0.33.0", path = "../fuels-signers", optional = true } | ||
fuels-types = { version = "0.33.0", path = "../fuels-types" } | ||
|
||
hex = { version = "0.4.3", default-features = false, features = ["std", "serde"] } | ||
portpicker = { version = "0.1.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 = "fuels-types" | ||
version = "0.32.3" | ||
version = "0.33.0" | ||
authors = ["Fuel Labs <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://fuel.network/" | ||
|
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 = "fuels" | ||
version = "0.32.3" | ||
version = "0.33.0" | ||
authors = ["Fuel Labs <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://fuel.network/" | ||
|
@@ -12,12 +12,12 @@ description = "Fuel Rust SDK." | |
[dependencies] | ||
fuel-core = { version = "0.15", default-features = false, optional = true } | ||
fuel-gql-client = { version = "0.15", default-features = false } | ||
fuels-abigen-macro = { version = "0.32.3", path = "../fuels-abigen-macro" } | ||
fuels-contract = { version = "0.32.3", path = "../fuels-contract" } | ||
fuels-core = { version = "0.32.3", path = "../fuels-core" } | ||
fuels-signers = { version = "0.32.3", path = "../fuels-signers" } | ||
fuels-test-helpers = { version = "0.32.3", path = "../fuels-test-helpers" } | ||
fuels-types = { version = "0.32.3", path = "../fuels-types" } | ||
fuels-abigen-macro = { version = "0.33.0", path = "../fuels-abigen-macro" } | ||
fuels-contract = { version = "0.33.0", path = "../fuels-contract" } | ||
fuels-core = { version = "0.33.0", path = "../fuels-core" } | ||
fuels-signers = { version = "0.33.0", path = "../fuels-signers" } | ||
fuels-test-helpers = { version = "0.33.0", path = "../fuels-test-helpers" } | ||
fuels-types = { version = "0.33.0", path = "../fuels-types" } | ||
|
||
[dev-dependencies] | ||
anyhow = "1.0.58" | ||
|
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 = "fuels-abi-cli" | ||
version = "0.32.3" | ||
version = "0.33.0" | ||
authors = ["Fuel Labs <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://fuel.network/" | ||
|
@@ -10,9 +10,9 @@ description = "Fuel Rust SDK CLI tool to parse ABI." | |
|
||
[dependencies] | ||
anyhow = "1" | ||
fuels-contract = { version = "0.32.3", path = "../../packages/fuels-contract" } | ||
fuels-core = { version = "0.32.3", path = "../../packages/fuels-core" } | ||
fuels-types = { version = "0.32.3", path = "../../packages/fuels-types" } | ||
fuels-contract = { version = "0.33.0", path = "../../packages/fuels-contract" } | ||
fuels-core = { version = "0.33.0", path = "../../packages/fuels-core" } | ||
fuels-types = { version = "0.33.0", path = "../../packages/fuels-types" } | ||
hex = "0.4" | ||
itertools = "0.10" | ||
structopt = "0.3" |