Skip to content
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

chore: update fuel-core to 0.36.0 #1510

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.35.0
FUEL_CORE_VERSION: 0.36.0
FUEL_CORE_PATCH_BRANCH:
RUST_VERSION: 1.79.0
FORC_VERSION: 0.63.3
Expand Down
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,23 +85,23 @@ octocrab = { version = "0.39", default-features = false }
dotenv = { version = "0.15", default-features = false }

# Dependencies from the `fuel-core` repository:
fuel-core = { version = "0.35.0", default-features = false, features = [
fuel-core = { version = "0.36.0", default-features = false, features = [
"wasm-executor",
] }
fuel-core-chain-config = { version = "0.35.0", default-features = false }
fuel-core-client = { version = "0.35.0", default-features = false }
fuel-core-poa = { version = "0.35.0", default-features = false }
fuel-core-services = { version = "0.35.0", default-features = false }
fuel-core-types = { version = "0.35.0", default-features = false }
fuel-core-chain-config = { version = "0.36.0", default-features = false }
fuel-core-client = { version = "0.36.0", default-features = false }
fuel-core-poa = { version = "0.36.0", default-features = false }
fuel-core-services = { version = "0.36.0", default-features = false }
fuel-core-types = { version = "0.36.0", default-features = false }

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

# Workspace projects
fuels = { version = "0.66.4", path = "./packages/fuels", default-features = false }
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, 35, 0);
pub const SUPPORTED_FUEL_CORE_VERSION: semver::Version = semver::Version::new(0, 36, 0);
Loading