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

v0.10.0 #548

Merged
merged 2 commits into from
Aug 10, 2022
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
22 changes: 11 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion deployment/charts/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: fuel-core
description: Fuel Core Helm Chart
type: application
appVersion: "0.9.5"
appVersion: "0.10.0"
version: 0.1.0
4 changes: 2 additions & 2 deletions fuel-block-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-block-executor"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -11,5 +11,5 @@ description = "Fuel Block Executor"

[dependencies]
anyhow = "1.0"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.9.5" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.10.0" }
tokio = { version = "1.14", features = ["full"] }
4 changes: 2 additions & 2 deletions fuel-block-importer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-block-importer"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -11,6 +11,6 @@ description = "Fuel Block Importer"

[dependencies]
anyhow = "1.0"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.9.5" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.10.0" }
parking_lot = "0.12"
tokio = { version = "1.14", features = ["full"] }
4 changes: 2 additions & 2 deletions fuel-block-producer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-block-producer"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -11,6 +11,6 @@ description = "Fuel Block Producer"

[dependencies]
anyhow = "1.0"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.9.5" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.10.0" }
parking_lot = "0.12"
tokio = { version = "1.14", features = ["full"] }
2 changes: 1 addition & 1 deletion fuel-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-gql-client"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions fuel-core-bft/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core-bft"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -11,6 +11,6 @@ description = "Fuel Core BFT"

[dependencies]
anyhow = "1.0"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.9.5" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.10.0" }
parking_lot = "0.12"
tokio = { version = "1.14", features = ["full"] }
2 changes: 1 addition & 1 deletion fuel-core-interfaces/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core-interfaces"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand Down
18 changes: 9 additions & 9 deletions fuel-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-core"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
Expand Down Expand Up @@ -33,16 +33,16 @@ clap = { version = "3.2", features = ["env", "derive"] }
derive_more = { version = "0.99" }
dirs = "3.0"
env_logger = "0.9"
fuel-block-executor = { path = "../fuel-block-executor", version = "0.9.5" }
fuel-block-importer = { path = "../fuel-block-importer", version = "0.9.5" }
fuel-block-producer = { path = "../fuel-block-producer", version = "0.9.5" }
fuel-core-bft = { path = "../fuel-core-bft", version = "0.9.5" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.9.5", features = [
fuel-block-executor = { path = "../fuel-block-executor", version = "0.10.0" }
fuel-block-importer = { path = "../fuel-block-importer", version = "0.10.0" }
fuel-block-producer = { path = "../fuel-block-producer", version = "0.10.0" }
fuel-core-bft = { path = "../fuel-core-bft", version = "0.10.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.10.0", features = [
"serde",
] }
fuel-relayer = { path = "../fuel-relayer", version = "0.9.5" }
fuel-sync = { path = "../fuel-sync", version = "0.9.5" }
fuel-txpool = { path = "../fuel-txpool", version = "0.9.5" }
fuel-relayer = { path = "../fuel-relayer", version = "0.10.0" }
fuel-sync = { path = "../fuel-sync", version = "0.10.0" }
fuel-txpool = { path = "../fuel-txpool", version = "0.10.0" }
futures = "0.3"
graphql-parser = "0.3.0"
hex = { version = "0.4", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions fuel-p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-p2p"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["cryptography::cryptocurrencies", "network-programming"]
edition = "2021"
Expand All @@ -13,7 +13,7 @@ description = "Fuel client networking"
[dependencies]
async-trait = "0.1.52"
bincode = "1.3"
fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde"], version = "0.9.5" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde"], version = "0.10.0" }
futures = "0.3"
futures-timer = "3.0"
ip_network = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions fuel-relayer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-relayer"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -26,7 +26,7 @@ ethers-providers = { version = "0.17", default-features = false, features = [
] }
ethers-signers = { version = "0.17", default-features = false }
features = "0.10"
fuel-core-interfaces = { path = "../fuel-core-interfaces", package = "fuel-core-interfaces", version = "0.9.5" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", package = "fuel-core-interfaces", version = "0.10.0" }
futures = "0.3"
hex = "0.4"
once_cell = "1.4"
Expand Down
4 changes: 2 additions & 2 deletions fuel-sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-sync"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -11,6 +11,6 @@ description = "Fuel Synchronizer"

[dependencies]
anyhow = "1.0"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.9.5" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.10.0" }
parking_lot = "0.12"
tokio = { version = "1.14", features = ["full"] }
6 changes: 3 additions & 3 deletions fuel-txpool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-txpool"
version = "0.9.5"
version = "0.10.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand All @@ -14,14 +14,14 @@ description = "Transaction pool"
anyhow = "1.0"
async-trait = "0.1"
chrono = "0.4"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.9.5" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.10.0" }
futures = "0.3"
parking_lot = "0.11"
thiserror = "1.0"
tokio = { version = "1.14", default-features = false, features = ["sync"] }
tracing = "0.1"

[dev-dependencies]
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.9.5", features = [
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.10.0", features = [
"test-helpers",
] }