Skip to content

Commit

Permalink
Bump versions to 0.35.1 (#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
digorithm authored Feb 3, 2023
1 parent c003e35 commit 4e92144
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/fuels-rs"
rust-version = "1.67.0"
version = "0.35.0"
version = "0.35.1"

[workspace.dependencies]
fuel-asm = "0.25"
Expand All @@ -49,11 +49,11 @@ fuel-core-client = "0.16"
fuel-core-chain-config = "0.16"
fuel-core-types = "0.16"
fuel-vm = "0.25"
fuels = { version = "0.35.0", path = "./packages/fuels" }
fuels-code-gen = { version = "0.35.0", path = "./packages/fuels-code-gen" }
fuels-core = { version = "0.35.0", path = "./packages/fuels-core" }
fuels-macros = { version = "0.35.0", path = "./packages/fuels-macros" }
fuels-programs = { version = "0.35.0", path = "./packages/fuels-programs" }
fuels-signers = { version = "0.35.0", path = "./packages/fuels-signers" }
fuels-test-helpers = { version = "0.35.0", path = "./packages/fuels-test-helpers" }
fuels-types = { version = "0.35.0", path = "./packages/fuels-types" }
fuels = { version = "0.35.1", path = "./packages/fuels" }
fuels-code-gen = { version = "0.35.1", path = "./packages/fuels-code-gen" }
fuels-core = { version = "0.35.1", path = "./packages/fuels-core" }
fuels-macros = { version = "0.35.1", path = "./packages/fuels-macros" }
fuels-programs = { version = "0.35.1", path = "./packages/fuels-programs" }
fuels-signers = { version = "0.35.1", path = "./packages/fuels-signers" }
fuels-test-helpers = { version = "0.35.1", path = "./packages/fuels-test-helpers" }
fuels-types = { version = "0.35.1", path = "./packages/fuels-types" }
4 changes: 2 additions & 2 deletions ci_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# Requires installed:
# The latest version of the `forc`,`forc-fmt` and `fuel-core`.
# `cargo install fuel-core-bin --git https://github.com/FuelLabs/fuel-core --tag v0.16.1 --locked`
# `cargo install forc --git https://github.com/FuelLabs/sway --tag v0.35.0 --locked`
# `cargo install forc-fmt --git https://github.com/FuelLabs/sway --tag v0.35.0 --locked`
# `cargo install forc --git https://github.com/FuelLabs/sway --tag v0.35.1 --locked`
# `cargo install forc-fmt --git https://github.com/FuelLabs/sway --tag v0.35.1 --locked`
# Note, if you need a custom branch, you can replace `--tag {RELEASE}` with the `--branch {BRANCH_NAME}`.

cargo run --bin test-projects -- build &&
Expand Down
2 changes: 1 addition & 1 deletion docs/src/providers/short-lived.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ let wallet = launch_provider_and_get_wallet().await;
The `fuel-core-lib` is a feature defined in the `fuels` library, allowing us to run a `fuel-core` node without installing the `fuel-core` binary on the local machine. Using the `fuel-core-lib` feature flag entails downloading all the dependencies needed to run the fuel-core node.

```rust,ignore
fuels = { version = "0.35.0", features = ["fuel-core-lib"] }
fuels = { version = "0.35.1", features = ["fuel-core-lib"] }
```

0 comments on commit 4e92144

Please sign in to comment.