Skip to content

Commit

Permalink
release: bump versions to 0.14.0 (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
iqdecay authored May 26, 2022
1 parent e253ae2 commit 9bc541b
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 27 deletions.
6 changes: 3 additions & 3 deletions docs/src/getting-started/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ Now you're up and ready to develop with the Fuel Rust SDK!
all you need is to declare these three dependencies on your `Cargo.toml`:

```toml
fuels-abigen-macro = "0.13"
fuels = "0.13"
fuels-abigen-macro = "0.14"
fuels = "0.14"
```

_Note that we're using `0.13`, which is the latest version at the time of this writing._
_Note that we're using `0.14`, which is the latest version at the time of this writing._

And then, in your Rust file that's going to make use of the SDK:

Expand Down
6 changes: 3 additions & 3 deletions packages/fuels-abigen-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-abigen-macro"
version = "0.13.0"
version = "0.14.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -12,7 +12,7 @@ description = "Fuel Rust SDK marcros to generate types from ABI."
proc-macro = true

[dependencies]
fuels-core = { version = "0.13.0", path = "../fuels-core" }
fuels-core = { version = "0.14.0", path = "../fuels-core" }
proc-macro2 = "1.0"
quote = "1.0"
rand = "0.8"
Expand All @@ -27,4 +27,4 @@ sha2 = "0.9.5"
tokio = "1.15.0"
tracing = {version = "0.1", default-features = false}
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}
ctor = " 0.1"
ctor = " 0.1"
8 changes: 4 additions & 4 deletions packages/fuels-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-contract"
version = "0.13.0"
version = "0.14.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -12,8 +12,8 @@ description = "Fuel Rust SDK contracts."
anyhow = "1"
bytes = { version = "1.0.1", features = ["serde"] }
fuel-gql-client = { version = "0.8", default-features = false }
fuels-core = { version = "0.13.0", path = "../fuels-core" }
fuels-signers = { version = "0.13.0", path = "../fuels-signers" }
fuels-core = { version = "0.14.0", path = "../fuels-core" }
fuels-signers = { version = "0.14.0", path = "../fuels-signers" }
hex = { version = "0.4.3", default-features = false, features = ["std"] }
proc-macro2 = "1.0"
quote = "1.0"
Expand All @@ -26,4 +26,4 @@ strum = "0.21"
strum_macros = "0.21"
thiserror = { version = "1.0.26", default-features = false }
tokio = "1.12"
tracing = "0.1"
tracing = "0.1"
4 changes: 2 additions & 2 deletions packages/fuels-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-core"
version = "0.13.0"
version = "0.14.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -13,7 +13,7 @@ Inflector = "0.11"
anyhow = "1"
fuel-tx = "0.12"
fuel-types = "0.5"
fuels-types = { version = "0.13.0", path = "../fuels-types" }
fuels-types = { version = "0.14.0", path = "../fuels-types" }
hex = { version = "0.4.3", features = ["std"] }
itertools = "0.10"
proc-macro2 = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/fuels-signers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-signers"
version = "0.13.0"
version = "0.14.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -18,7 +18,7 @@ eth-keystore = { version = "0.3.0" }
fuel-core = { version = "0.8", default-features = false, optional = true }
fuel-crypto = "0.5"
fuel-gql-client = { version = "0.8", default-features = false }
fuels-core = { version = "0.13.0", path = "../fuels-core" }
fuels-core = { version = "0.14.0", path = "../fuels-core" }
hex = { version = "0.4.3", default-features = false, features = ["std"] }
rand = { version = "0.8.4", default-features = false }
serde = { version = "1.0.124", default-features = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/fuels-test-helpers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-test-helpers"
version = "0.13.0"
version = "0.14.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -12,7 +12,7 @@ description = "Fuel Rust SDK test helpers."
fuel-core = { version = "0.8", default-features = false }
fuel-crypto = "0.5"
fuel-gql-client = { version = "0.8", default-features = false }
fuels-signers = { version = "0.13.0", path = "../fuels-signers", optional = true }
fuels-signers = { version = "0.14.0", path = "../fuels-signers", optional = true }
rand = { version = "0.8.4", default-features = false }
tokio = "1.15"

Expand Down
2 changes: 1 addition & 1 deletion packages/fuels-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-types"
version = "0.13.0"
version = "0.14.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand Down
12 changes: 6 additions & 6 deletions packages/fuels/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels"
version = "0.13.0"
version = "0.14.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -10,8 +10,8 @@ rust-version = "1.61.0"
description = "Fuel Rust SDK."

[dependencies]
fuels-abigen-macro = { version = "0.13.0", path = "../fuels-abigen-macro" }
fuels-contract = { version = "0.13.0", path = "../fuels-contract" }
fuels-core = { version = "0.13.0", path = "../fuels-core" }
fuels-signers = { version = "0.13.0", path = "../fuels-signers" }
fuels-test-helpers = { version = "0.13.0", path = "../fuels-test-helpers" }
fuels-abigen-macro = { version = "0.14.0", path = "../fuels-abigen-macro" }
fuels-contract = { version = "0.14.0", path = "../fuels-contract" }
fuels-core = { version = "0.14.0", path = "../fuels-core" }
fuels-signers = { version = "0.14.0", path = "../fuels-signers" }
fuels-test-helpers = { version = "0.14.0", path = "../fuels-test-helpers" }
8 changes: 4 additions & 4 deletions tools/fuels-abi-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuels-abi-cli"
version = "0.13.0"
version = "0.14.0"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -10,9 +10,9 @@ description = "Fuel Rust SDK CLI tool to parse ABI."

[dependencies]
anyhow = "1"
fuels-contract = { version = "0.13.0", path = "../../packages/fuels-contract" }
fuels-core = { version = "0.13.0", path = "../../packages/fuels-core" }
fuels-types = { version = "0.13.0", path = "../../packages/fuels-types" }
fuels-contract = { version = "0.14.0", path = "../../packages/fuels-contract" }
fuels-core = { version = "0.14.0", path = "../../packages/fuels-core" }
fuels-types = { version = "0.14.0", path = "../../packages/fuels-types" }
hex = "0.4"
itertools = "0.10"
structopt = "0.3"

0 comments on commit 9bc541b

Please sign in to comment.