Skip to content

Commit

Permalink
v0.4.0-rc1 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb authored May 3, 2024
1 parent 1e08dd0 commit b0fe69c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
branches:
- release/[0-9]+.[0-9]+.[0-9]+
- release/[0-9]+.[0-9]+.[0-9]+-?[a-z0-9]*
tags:
- v[0-9]+.[0-9]+.[0-9]+-?[a-z0-9]*

Expand All @@ -25,7 +25,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]+' | uniq)" >> $GITHUB_ENV
echo "CRATE_VERSIONS=$(cargo tree --depth=0 --workspace | egrep -o '[0-9]+\.[0-9]+\.[0-9]+\-?[a-z0-9]*' | uniq)" >> $GITHUB_ENV
echo "RELEASE_VERSION=${GITHUB_REF_NAME#release/}" >> $GITHUB_ENV
- name: Check release version is bumped
Expand Down Expand Up @@ -68,9 +68,6 @@ jobs:
echo "spec version: $SPEC_VERSION"
exit 0
- run: sudo apt-get install -y protobuf-compiler
- name: Check wasm build
run: cargo check --all-features --all-targets --release -p ${{ matrix.runtime }}-runtime
release:
if: startsWith(github.ref, 'refs/tags/v')
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.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = [ "Ajuna Network <https://github.com/ajuna-network>" ]
edition = "2021"
homepage = "https://ajuna.io"
repository = "https://github.com/ajuna-network/Ajuna"
version = "0.2.3"
version = "0.4.0-rc1"

[workspace]
resolver = "2"
Expand Down Expand Up @@ -153,7 +153,7 @@ orml-vesting = { version = "0.10.0", default-features = false }
ajuna-runtime = { path = "runtime/ajuna" }

# Ajuna Pallets
orml-pallets-benchmarking = { git = "https://github.com/ajuna-network/ajuna-pallets.git", branch = "develop", default-features = false }
orml-pallets-benchmarking = { git = "https://github.com/ajuna-network/ajuna-pallets.git", tag = "v0.7.0", default-features = false }

[profile.production]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion runtime/ajuna/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("ajuna"),
impl_name: create_runtime_str!("ajuna"),
authoring_version: 1,
spec_version: 203,
spec_version: 400,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit b0fe69c

Please sign in to comment.