Skip to content

Commit

Permalink
Bump to v0.7.0. (FuelLabs#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
adlerjohn authored May 19, 2022
1 parent e621db0 commit 6a65d08
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 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.6.4"
appVersion: "0.7.0"
version: 0.1.0
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.6.4"
version = "0.7.0"
authors = ["Fuel Labs <[email protected]>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
Expand Down
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.6.4"
version = "0.7.0"
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand Down
6 changes: 3 additions & 3 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.6.4"
version = "0.7.0"
authors = ["Fuel Labs <[email protected]>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
Expand Down Expand Up @@ -36,14 +36,14 @@ derive_more = { version = "0.99" }
dirs = "3.0"
env_logger = "0.9"
fuel-asm = { version = "0.5", features = ["serde"] }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.6.4", features = [
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.7.0", features = [
"serde",
] }
fuel-crypto = { version = "0.5", features = ["random"] }
fuel-merkle = "0.1"
fuel-storage = { version = "0.1" }
fuel-tx = { version = "0.10", features = ["serde"] }
fuel-txpool = { path = "../fuel-txpool", version = "0.6.4" }
fuel-txpool = { path = "../fuel-txpool", version = "0.7.0" }
fuel-types = { version = "0.5", features = ["serde"] }
fuel-vm = { version = "0.9", features = ["serde"] }
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion fuel-p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-p2p"
version = "0.6.4"
version = "0.7.0"
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies", "network-programming"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions fuel-relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ethers-providers = { git = "https://github.com/rakita/ethers-rs.git", branch = "
"rustls",
] }
features = "0.10"
fuel-core-interfaces = { path = "../fuel-core-interfaces", package = "fuel-core-interfaces", version = "0.6.4" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", package = "fuel-core-interfaces", version = "0.7.0" }
fuel-tx = { version = "0.10", features = ["serde"] }
fuel-types = { version = "0.5", features = ["serde"] }
futures = "0.3"
Expand All @@ -33,7 +33,7 @@ tracing = "0.1"
tracing-subscriber = "0.3.9"

[dev-dependencies]
fuel-core-interfaces = { path = "../fuel-core-interfaces", package = "fuel-core-interfaces", version = "0.6.4", features = [
fuel-core-interfaces = { path = "../fuel-core-interfaces", package = "fuel-core-interfaces", version = "0.7.0", features = [
"test_helpers",
] }
fuel-types = { version = "0.5", features = ["serde", "random"] }
Expand Down
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.6.4"
version = "0.7.0"
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
Expand All @@ -14,7 +14,7 @@ description = "Transaction pool"
anyhow = "1.0"
async-trait = "0.1"
chrono = "0.4"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.6.4" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.7.0" }
fuel-tx = { version = "0.10", features = ["serde"] }
fuel-types = { version = "0.5", features = ["serde"] }
futures = "0.3"
Expand All @@ -24,6 +24,6 @@ tokio = { version = "1.14", default-features = false, features = ["sync"] }
tracing = "0.1"

[dev-dependencies]
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.6.4", features = [
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.7.0", features = [
"test_helpers",
] }

0 comments on commit 6a65d08

Please sign in to comment.