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

Applying #1435 to master #1440

Merged
merged 7 commits into from
Oct 24, 2023
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Description of the upcoming release here.

### Changed

- [#1440](https://github.com/FuelLabs/fuel-core/pull/1440): Don't report reserved nodes that send invalid transactions.
- [#1439](https://github.com/FuelLabs/fuel-core/pull/1439): Reduced memory BMT consumption during creation of the header.
- [#1434](https://github.com/FuelLabs/fuel-core/pull/1434): Continue gossiping transactions to reserved peers regardless of gossiping reputation score.
- [#1399](https://github.com/FuelLabs/fuel-core/pull/1399): The Relayer now queries Ethereum for its latest finalized block instead of using a configurable "finalization period" to presume finality.
Expand Down
48 changes: 24 additions & 24 deletions Cargo.lock

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

48 changes: 24 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,33 +46,33 @@ homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-core"
version = "0.20.4"
version = "0.20.8"

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

Expand Down
Loading
Loading