Skip to content

Commit

Permalink
prep release for v0.14.1 (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
Voxelot authored Nov 9, 2022
1 parent 9ea204b commit 8ed3f3a
Show file tree
Hide file tree
Showing 16 changed files with 145 additions and 136 deletions.
197 changes: 103 additions & 94 deletions Cargo.lock

Large diffs are not rendered by default.

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.14.0"
appVersion: "0.14.1"
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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
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.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.1" }
tokio = { version = "1.21", 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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
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.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.1" }
parking_lot = "0.12"
tokio = { version = "1.21", 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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -12,7 +12,7 @@ description = "Fuel Block Producer"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.1" }
parking_lot = "0.12"
tokio = { version = "1.21", features = ["full"] }
tracing = { version = "0.1" }
Expand Down
6 changes: 3 additions & 3 deletions fuel-chain-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-chain-config"
version = "0.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand All @@ -12,10 +12,10 @@ description = "Fuel Chain config types"

[dependencies]
anyhow = "1.0"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.0", features = [
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.1", features = [
"serde",
] }
fuel-poa-coordinator = { path = "../fuel-poa-coordinator", version = "0.14.0" }
fuel-poa-coordinator = { path = "../fuel-poa-coordinator", version = "0.14.1" }
hex = { version = "0.4", features = ["serde"] }
itertools = "0.10"
rand = "0.8"
Expand Down
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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
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.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.1" }
parking_lot = "0.12"
tokio = { version = "1.21", 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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand Down
26 changes: 13 additions & 13 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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
Expand Down Expand Up @@ -30,20 +30,20 @@ derive_more = { version = "0.99" }
dirs = "4.0"
enum-iterator = "1.2"
env_logger = "0.9"
fuel-block-executor = { path = "../fuel-block-executor", version = "0.14.0" }
fuel-block-importer = { path = "../fuel-block-importer", version = "0.14.0" }
fuel-block-producer = { path = "../fuel-block-producer", version = "0.14.0" }
fuel-chain-config = { path = "../fuel-chain-config", version = "0.14.0" }
fuel-core-bft = { path = "../fuel-core-bft", version = "0.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.0", features = [
fuel-block-executor = { path = "../fuel-block-executor", version = "0.14.1" }
fuel-block-importer = { path = "../fuel-block-importer", version = "0.14.1" }
fuel-block-producer = { path = "../fuel-block-producer", version = "0.14.1" }
fuel-chain-config = { path = "../fuel-chain-config", version = "0.14.1" }
fuel-core-bft = { path = "../fuel-core-bft", version = "0.14.1" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.1", features = [
"serde",
] }
fuel-metrics = { path = "../fuel-metrics", version = "0.14.0", optional = true }
fuel-p2p = { path = "../fuel-p2p", version = "0.14.0", optional = true }
fuel-poa-coordinator = { path = "../fuel-poa-coordinator", version = "0.14.0" }
fuel-relayer = { path = "../fuel-relayer", version = "0.14.0", optional = true }
fuel-sync = { path = "../fuel-sync", version = "0.14.0" }
fuel-txpool = { path = "../fuel-txpool", version = "0.14.0" }
fuel-metrics = { path = "../fuel-metrics", version = "0.14.1", optional = true }
fuel-p2p = { path = "../fuel-p2p", version = "0.14.1", optional = true }
fuel-poa-coordinator = { path = "../fuel-poa-coordinator", version = "0.14.1" }
fuel-relayer = { path = "../fuel-relayer", version = "0.14.1", optional = true }
fuel-sync = { path = "../fuel-sync", version = "0.14.1" }
fuel-txpool = { path = "../fuel-txpool", version = "0.14.1" }
futures = "0.3"
hex = { version = "0.4", features = ["serde"] }
itertools = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion fuel-metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-metrics"
version = "0.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand Down
8 changes: 4 additions & 4 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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies", "network-programming"]
edition = "2021"
Expand All @@ -14,8 +14,8 @@ description = "Fuel client networking"
anyhow = "1.0"
async-trait = "0.1"
bincode = "1.3"
fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde"], version = "0.14.0" }
fuel-metrics = { path = "../fuel-metrics", version = "0.14.0" } # TODO make this a feature
fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde"], version = "0.14.1" }
fuel-metrics = { path = "../fuel-metrics", version = "0.14.1" } # TODO make this a feature
futures = "0.3"
futures-timer = "3.0"
ip_network = "0.4"
Expand All @@ -32,7 +32,7 @@ tracing = "0.1"

[dev-dependencies]
ctor = "0.1"
fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde", "test-helpers"], version = "0.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", features = ["serde", "test-helpers"], version = "0.14.1" }
rand = "0.8"
tokio = { version = "1.21", features = ["full"] }
tracing-appender = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions fuel-poa-coordinator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-poa-coordinator"
version = "0.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -11,7 +11,7 @@ description = "Fuel Core PoA Coordinator"

[dependencies]
anyhow = "1.0"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.1" }
humantime-serde = "1.1.1"
parking_lot = "0.12"
serde = { version = "1.0", features = ["derive"] }
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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
edition = "2021"
homepage = "https://fuel.network/"
Expand All @@ -25,7 +25,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.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", package = "fuel-core-interfaces", version = "0.14.1" }
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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
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.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.1" }
parking_lot = "0.12"
tokio = { version = "1.21", features = ["full"] }
8 changes: 4 additions & 4 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.14.0"
version = "0.14.1"
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand All @@ -14,9 +14,9 @@ description = "Transaction pool"
anyhow = "1.0"
async-trait = "0.1"
chrono = "0.4"
fuel-chain-config = { path = "../fuel-chain-config", version = "0.14.0" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.0" }
fuel-metrics = { path = "../fuel-metrics", version = "0.14.0"}
fuel-chain-config = { path = "../fuel-chain-config", version = "0.14.1" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.14.1" }
fuel-metrics = { path = "../fuel-metrics", version = "0.14.1"}
futures = "0.3"
parking_lot = "0.11"
thiserror = "1.0"
Expand Down

0 comments on commit 8ed3f3a

Please sign in to comment.