Skip to content

Commit

Permalink
chore: use fuel-core 0.30.0 (#1436)
Browse files Browse the repository at this point in the history
### Checklist
- [ ] I have linked to any relevant issues.
- [ ] I have updated the documentation.
- [ ] I have added tests that prove my fix is effective or that my
feature works.
- [ ] I have added necessary labels.
- [ ] I have done my best to ensure that my PR adheres to [the Fuel Labs
Code Review
Standards](https://github.com/FuelLabs/rfcs/blob/master/text/code-standards/external-contributors.md).
- [ ] I have requested a review from the relevant team or maintainers.

---------

Co-authored-by: hal3e <[email protected]>
  • Loading branch information
xgreenx and hal3e authored Jun 17, 2024
1 parent d3ac1d3 commit 184a0c9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
CARGO_TERM_COLOR: always
DASEL_VERSION: https://github.com/TomWright/dasel/releases/download/v2.3.6/dasel_linux_amd64
RUSTFLAGS: "-D warnings"
FUEL_CORE_VERSION: 0.28.0
FUEL_CORE_VERSION: 0.30.0
FUEL_CORE_PATCH_BRANCH:
RUST_VERSION: 1.76.0
FORC_VERSION: 0.60.0
Expand Down
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,21 +81,21 @@ which = { version = "6.0.0", default-features = false }
zeroize = "1.7.0"

# Dependencies from the `fuel-core` repository:
fuel-core = { version = "0.28.0", default-features = false }
fuel-core-chain-config = { version = "0.28.0", default-features = false }
fuel-core-client = { version = "0.28.0", default-features = false }
fuel-core-poa = { version = "0.28.0", default-features = false }
fuel-core-services = { version = "0.28.0", default-features = false }
fuel-core-types = { version = "0.28.0", default-features = false }
fuel-core = { version = "0.30.0", default-features = false }
fuel-core-chain-config = { version = "0.30.0", default-features = false }
fuel-core-client = { version = "0.30.0", default-features = false }
fuel-core-poa = { version = "0.30.0", default-features = false }
fuel-core-services = { version = "0.30.0", default-features = false }
fuel-core-types = { version = "0.30.0", default-features = false }

# Dependencies from the `fuel-vm` repository:
fuel-asm = { version = "0.52.0" }
fuel-crypto = { version = "0.52.0" }
fuel-merkle = { version = "0.52.0" }
fuel-storage = { version = "0.52.0" }
fuel-tx = { version = "0.52.0" }
fuel-types = { version = "0.52.0" }
fuel-vm = { version = "0.52.0" }
fuel-asm = { version = "0.54.1" }
fuel-crypto = { version = "0.54.1" }
fuel-merkle = { version = "0.54.1" }
fuel-storage = { version = "0.54.1" }
fuel-tx = { version = "0.54.1" }
fuel-types = { version = "0.54.1" }
fuel-vm = { version = "0.54.1" }

# Workspace projects
fuels = { version = "0.64.0", path = "./packages/fuels", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions examples/contracts/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ mod tests {
.await?;
// ANCHOR_END: contract_call_cost_estimation

let expected_gas = 2613;
let expected_gas = 2692;

assert_eq!(transaction_cost.gas_used, expected_gas);

Expand Down Expand Up @@ -611,7 +611,7 @@ mod tests {
.await?;
// ANCHOR_END: multi_call_cost_estimation

let expected_gas = 4063;
let expected_gas = 4191;

assert_eq!(transaction_cost.gas_used, expected_gas);

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pub const SUPPORTED_FUEL_CORE_VERSION: semver::Version = semver::Version::new(0, 28, 0);
pub const SUPPORTED_FUEL_CORE_VERSION: semver::Version = semver::Version::new(0, 30, 0);

0 comments on commit 184a0c9

Please sign in to comment.