Skip to content

Commit

Permalink
Upgrade 0.24.2 to 0.24.3 (#1863)
Browse files Browse the repository at this point in the history
Upgrades 0.24.2 to 0.24.3

## Checklist
- [x] Breaking changes are clearly marked as such in the PR description
and changelog
- [ ] New behavior is reflected in tests
- [ ] [The specification](https://github.com/FuelLabs/fuel-specs/)
matches the implemented behavior (link update PR if changes are needed)

### Before requesting review
- [x] I have reviewed the code myself
- [ ] I have created follow-up issues caused by this PR and linked them
here

### After merging, notify other teams

[Add or remove entries as needed]

- [ ] [Rust SDK](https://github.com/FuelLabs/fuels-rs/)
- [ ] [Sway compiler](https://github.com/FuelLabs/sway/)
- [ ] [Platform
documentation](https://github.com/FuelLabs/devrel-requests/issues/new?assignees=&labels=new+request&projects=&template=NEW-REQUEST.yml&title=%5BRequest%5D%3A+)
(for out-of-organization contributors, the person merging the PR will do
this)
- [ ] Someone else?
  • Loading branch information
bvrooman committed Apr 24, 2024
1 parent 9e21067 commit 68d962d
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 53 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

Description of the upcoming release here.

## [Version 0.24.3]

### Fixed

- [#1861](https://github.com/FuelLabs/fuel-core/pull/1861): Replaced instances of `Union` with `Enum` for GraphQL definitions of `ConsensusParametersVersion` and related types. This is needed because `Union` does not support multiple `Version`s inside discriminants or empty variants.
Expand Down
52 changes: 26 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 26 additions & 26 deletions Cargo.toml
Expand Up @@ -48,36 +48,36 @@ homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-core"
version = "0.24.2"
version = "0.24.3"

[workspace.dependencies]
# Workspace members
fuel-core = { version = "0.24.2", path = "./crates/fuel-core", default-features = false }
fuel-core-client-bin = { version = "0.24.2", path = "./bin/client" }
fuel-core-bin = { version = "0.24.2", path = "./bin/fuel-core" }
fuel-core-keygen = { version = "0.24.2", path = "./crates/keygen" }
fuel-core-keygen-bin = { version = "0.24.2", path = "./bin/keygen" }
fuel-core-chain-config = { version = "0.24.2", path = "./crates/chain-config", default-features = false }
fuel-core-client = { version = "0.24.2", path = "./crates/client" }
fuel-core-database = { version = "0.24.2", path = "./crates/database" }
fuel-core-metrics = { version = "0.24.2", path = "./crates/metrics" }
fuel-core-services = { version = "0.24.2", path = "./crates/services" }
fuel-core-consensus-module = { version = "0.24.2", path = "./crates/services/consensus_module" }
fuel-core-bft = { version = "0.24.2", path = "./crates/services/consensus_module/bft" }
fuel-core-poa = { version = "0.24.2", path = "./crates/services/consensus_module/poa" }
fuel-core-executor = { version = "0.24.2", path = "./crates/services/executor", default-features = false }
fuel-core-importer = { version = "0.24.2", path = "./crates/services/importer" }
fuel-core-p2p = { version = "0.24.2", path = "./crates/services/p2p" }
fuel-core-producer = { version = "0.24.2", path = "./crates/services/producer" }
fuel-core-relayer = { version = "0.24.2", path = "./crates/services/relayer" }
fuel-core-sync = { version = "0.24.2", path = "./crates/services/sync" }
fuel-core-txpool = { version = "0.24.2", path = "./crates/services/txpool" }
fuel-core-storage = { version = "0.24.2", path = "./crates/storage", default-features = false }
fuel-core-trace = { version = "0.24.2", path = "./crates/trace" }
fuel-core-types = { version = "0.24.2", path = "./crates/types", default-features = false }
fuel-core = { version = "0.24.3", path = "./crates/fuel-core", default-features = false }
fuel-core-client-bin = { version = "0.24.3", path = "./bin/client" }
fuel-core-bin = { version = "0.24.3", path = "./bin/fuel-core" }
fuel-core-keygen = { version = "0.24.3", path = "./crates/keygen" }
fuel-core-keygen-bin = { version = "0.24.3", path = "./bin/keygen" }
fuel-core-chain-config = { version = "0.24.3", path = "./crates/chain-config", default-features = false }
fuel-core-client = { version = "0.24.3", path = "./crates/client" }
fuel-core-database = { version = "0.24.3", path = "./crates/database" }
fuel-core-metrics = { version = "0.24.3", path = "./crates/metrics" }
fuel-core-services = { version = "0.24.3", path = "./crates/services" }
fuel-core-consensus-module = { version = "0.24.3", path = "./crates/services/consensus_module" }
fuel-core-bft = { version = "0.24.3", path = "./crates/services/consensus_module/bft" }
fuel-core-poa = { version = "0.24.3", path = "./crates/services/consensus_module/poa" }
fuel-core-executor = { version = "0.24.3", path = "./crates/services/executor", default-features = false }
fuel-core-importer = { version = "0.24.3", path = "./crates/services/importer" }
fuel-core-p2p = { version = "0.24.3", path = "./crates/services/p2p" }
fuel-core-producer = { version = "0.24.3", path = "./crates/services/producer" }
fuel-core-relayer = { version = "0.24.3", path = "./crates/services/relayer" }
fuel-core-sync = { version = "0.24.3", path = "./crates/services/sync" }
fuel-core-txpool = { version = "0.24.3", path = "./crates/services/txpool" }
fuel-core-storage = { version = "0.24.3", path = "./crates/storage", default-features = false }
fuel-core-trace = { version = "0.24.3", path = "./crates/trace" }
fuel-core-types = { version = "0.24.3", path = "./crates/types", default-features = false }
fuel-core-tests = { version = "0.0.0", path = "./tests" }
fuel-core-upgradable-executor = { version = "0.24.2", path = "./crates/services/upgradable-executor" }
fuel-core-wasm-executor = { version = "0.24.2", path = "./crates/services/upgradable-executor/wasm-executor" }
fuel-core-upgradable-executor = { version = "0.24.3", path = "./crates/services/upgradable-executor" }
fuel-core-wasm-executor = { version = "0.24.3", path = "./crates/services/upgradable-executor/wasm-executor" }
fuel-core-xtask = { version = "0.0.0", path = "./xtask" }

# Fuel dependencies
Expand Down
2 changes: 1 addition & 1 deletion deployment/charts/Chart.yaml
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: ${fuel_core_service_name}
description: ${fuel_core_service_name} Helm Chart
type: application
appVersion: "0.24.2"
appVersion: "0.24.3"
version: 0.1.0

0 comments on commit 68d962d

Please sign in to comment.