Skip to content

Commit

Permalink
Bumped the version of the fuel-core and all crates to 0.17.3 (#1035)
Browse files Browse the repository at this point in the history
## What's Changed
* RESERVED_NODES and BOOTSTRAP_NODES conditional by @rfuelsh in
FuelLabs/fuel-core#1020
* barebones e2e test client by @Voxelot in
FuelLabs/fuel-core#1003
* Graceful Shutdown for all services by @xgreenx in
FuelLabs/fuel-core#1018
* Don't startup p2p or sync services if p2p isn't configured by @Voxelot
in FuelLabs/fuel-core#1021
* update to fuel-vm 0.26.1 by @Voxelot in
FuelLabs/fuel-core#1022
* Remove comment referencing previous defensive programming by
@mitch-fuel in FuelLabs/fuel-core#1024
* Add RUST_LOG option to deployment charts & increase max_transmit_size
by @Voxelot in FuelLabs/fuel-core#1025
* additional integ tests for resources to spend by @Voxelot in
FuelLabs/fuel-core#1026
* Disable pagination args for balances by @Voxelot in
FuelLabs/fuel-core#1027
* Add e2e test to check that Bob can send money back to Alice by
@xgreenx in FuelLabs/fuel-core#1029
* Predicate error handling by @Voxelot in
FuelLabs/fuel-core#1030
* Use composite actions by @tirkesi in
FuelLabs/fuel-core#1032
* Pruning of the transaction by TTL by @xgreenx in
FuelLabs/fuel-core#1033

## New Contributors
* @tirkesi made their first contribution in
FuelLabs/fuel-core#1032

**Full Changelog**:
FuelLabs/fuel-core@v0.17.2...v0.17.3
crypto523 committed Feb 21, 2023
1 parent 05367d6 commit c2089ad
Showing 4 changed files with 77 additions and 76 deletions.
103 changes: 52 additions & 51 deletions Cargo.lock

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

46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -45,32 +45,32 @@ homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-core"
version = "0.17.2"
version = "0.17.3"

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

2 changes: 1 addition & 1 deletion benches/benches-outputs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,6 +6,6 @@ license = "BUSL-1.1"
publish = false

[dependencies]
fuel-core-types = { path = "../../crates/types", version = "0.17.2", default-features = false, features = ["random", "test-helpers"] }
fuel-core-types = { path = "../../crates/types", default-features = false, features = ["random", "test-helpers"] }

[workspace]
2 changes: 1 addition & 1 deletion deployment/charts/Chart.yaml
Original file line number Diff line number Diff line change
@@ -2,5 +2,5 @@ apiVersion: v2
name: ${fuel_core_service_name}
description: ${fuel_core_service_name} Helm Chart
type: application
appVersion: "0.17.2"
appVersion: "0.17.3"
version: 0.1.0

0 comments on commit c2089ad

Please sign in to comment.