Skip to content

Commit

Permalink
Release v0.25.1 (#1841)
Browse files Browse the repository at this point in the history
## Version v0.25.1

### Fixed

- [#1840](FuelLabs/fuel-core#1840): Fixed the
publishing of the `fuel-core 0.25.0` release.


### Before requesting review
- [x] I have reviewed the code myself

## What's Changed
* Fixed the publishing of the `fuel-core 0.25.0` by @xgreenx in
FuelLabs/fuel-core#1840


**Full Changelog**:
FuelLabs/fuel-core@v0.25.0...v0.25.1
  • Loading branch information
sui319 committed Apr 19, 2024
1 parent b31ec50 commit 6822ef6
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 55 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_VERSION }}
targets: "wasm32-unknown-unknown"
- name: Publish crate check
uses: xgreenx/publish-crates@v1
with:
Expand Down Expand Up @@ -246,6 +247,7 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_VERSION }}
targets: "wasm32-unknown-unknown"

- name: Publish crate
uses: xgreenx/publish-crates@v1
Expand Down Expand Up @@ -498,7 +500,7 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_VERSION }}
target: ${{ matrix.job.target }},wasm32-unknown-unknown
target: ${{ matrix.job.target }},"wasm32-unknown-unknown"

- name: Install cross
uses: baptiste0928/cargo-install@v1
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Description of the upcoming release here.

## [Version 0.25.1]

### Fixed

- [#1840](https://github.com/FuelLabs/fuel-core/pull/1840): Fixed the publishing of the `fuel-core 0.25.0` release.
Expand Down
52 changes: 26 additions & 26 deletions Cargo.lock

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

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

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

# Fuel dependencies
Expand Down
2 changes: 1 addition & 1 deletion crates/services/upgradable-executor/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ impl<S, R> Executor<S, R> {
/// This constant is used along with the `version_check` test.
/// To avoid automatic bumping during release, the constant uses `-` instead of `.`.
#[cfg(test)]
pub const CRATE_VERSION: &'static str = "0-25-0";
pub const CRATE_VERSION: &'static str = "0-25-1";

pub fn new(
storage_view_provider: S,
Expand Down
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_service_name}
description: ${fuel_core_service_name} Helm Chart
type: application
appVersion: "0.25.0"
appVersion: "0.25.1"
version: 0.1.0

0 comments on commit 6822ef6

Please sign in to comment.