diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e4435f..259f62e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - runtime: [bajun] + runtime: [ bajun ] steps: - uses: actions/checkout@v4 with: @@ -29,7 +29,7 @@ jobs: - name: Get crate and release versions run: | - echo "CRATE_VERSIONS=$(cargo tree --depth=0 --workspace | egrep -o '[0-9]+\.[0-9]+\.[0-9]+\-?[a-z0-9]*' | uniq)" >> $GITHUB_ENV + echo "CRATE_VERSIONS=$(cargo tree --depth=0 --workspace | egrep -o '[0-9]+\.[0-9]+\.[0-9]+' | uniq)" >> $GITHUB_ENV echo "RELEASE_VERSION=${GITHUB_REF_NAME#release/}" >> $GITHUB_ENV - name: Check release version is bumped @@ -78,7 +78,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - runtime: [bajun] + runtime: [ bajun ] env: SUBWASM_VERSION: v0.20.0 steps: @@ -175,7 +175,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - runtime: [bajun] + runtime: [ bajun ] include: - runtime: bajun network_key: ONF_BAJUN_NETWORK_KEY diff --git a/Cargo.lock b/Cargo.lock index b02c396..2dea607 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -657,7 +657,7 @@ dependencies = [ [[package]] name = "bajun-node" -version = "0.4.0-rc4" +version = "0.4.1" dependencies = [ "async-trait", "bajun-runtime", @@ -734,7 +734,7 @@ dependencies = [ [[package]] name = "bajun-runtime" -version = "0.4.0-rc4" +version = "0.4.1" dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-parachain-system", diff --git a/Cargo.toml b/Cargo.toml index 172affa..b7044a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ authors = [ "Ajuna Network " ] edition = "2021" homepage = "https://ajuna.io" repository = "https://github.com/ajuna-network/Ajuna" -version = "0.4.0-rc4" +version = "0.4.1" [workspace] resolver = "2" diff --git a/runtime/bajun/src/lib.rs b/runtime/bajun/src/lib.rs index 1df8481..e9660b5 100644 --- a/runtime/bajun/src/lib.rs +++ b/runtime/bajun/src/lib.rs @@ -219,7 +219,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("bajun"), impl_name: create_runtime_str!("bajun"), authoring_version: 1, - spec_version: 400, + spec_version: 401, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1,