Skip to content

Commit

Permalink
release prep (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
Voxelot authored Feb 4, 2022
1 parent 931addd commit 9274d7d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ jobs:

- name: Verify tag version
run: |
cargo install toml-cli
curl -sSLf "$(curl -sSLf https://api.github.com/repos/tomwright/dasel/releases/latest | grep browser_download_url | grep linux_amd64 | cut -d\" -f 4)" -L -o dasel && chmod +x dasel
mv ./dasel /usr/local/bin/dasel
./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} fuel-client/Cargo.toml
./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} fuel-core/Cargo.toml
./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} fuel-core-interfaces/Cargo.toml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/verify_tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fi

# strip preceeding 'v' if it exists on tag
REF=${REF/#v}
TOML_VERSION=$(toml get $MANIFEST package.version | tr -d '"')
TOML_VERSION=$(cat $MANIFEST | dasel -r toml 'package.version')

if [ "$TOML_VERSION" != "$REF" ]; then
err "Crate version $TOML_VERSION, doesn't match tag version $REF"
Expand Down
8 changes: 4 additions & 4 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 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.2.1"
version = "0.3.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
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.2.1"
version = "0.3.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
repository = "https://github.com/FuelLabs/fuel-core"
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.2.1"
version = "0.3.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
categories = ["concurrency", "cryptography::cryptocurrencies", "emulators"]
edition = "2021"
Expand All @@ -27,10 +27,10 @@ derive_more = { version = "0.99" }
dirs = "3.0"
env_logger = "0.9"
fuel-asm = { version = "0.1", features = ["serde-types"] }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.2.1" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.3.0" }
fuel-storage = { version = "0.1" }
fuel-tx = { version = "0.5", features = ["serde-types"] }
fuel-txpool = { path = "../fuel-txpool", version = "0.2.1" }
fuel-txpool = { path = "../fuel-txpool", version = "0.3.0" }
fuel-types = { version = "0.1", features = ["serde-types"] }
fuel-vm = { version = "0.4", features = ["serde-types"] }
futures = "0.3"
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.2.1"
version = "0.3.0"
authors = ["Fuel Labs <contact@fuel.sh>"]
edition = "2021"
repository = "https://github.com/FuelLabs/fuel-core"
Expand All @@ -9,7 +9,7 @@ description = "Transaction pool"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.2.1" }
fuel-core-interfaces = { path = "../fuel-core-interfaces", version = "0.3.0" }
fuel-tx = { version = "0.5", features = ["serde-types"] }
fuel-types = { version = "0.1", features = ["serde-types"] }
futures = "0.3"
Expand All @@ -18,6 +18,6 @@ thiserror = "1.0"
tokio = { version = "1.14", default-features = false, features = ["sync"] }

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

0 comments on commit 9274d7d

Please sign in to comment.