Skip to content

Commit

Permalink
L1-285 Bumped runtime version (#1826)
Browse files Browse the repository at this point in the history
# Description

Bumped `spec_version`

## Type of change

Please delete options that are not relevant.

- New feature (non-breaking change which adds functionality)
- Breaking change (fix or feature that would cause existing
functionality to not work as expected)
  • Loading branch information
Marcin-Radecki authored Oct 8, 2024
1 parent f5145e0 commit b43d7fe
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 35 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/run_consensus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function run_containers() {
for index in $(seq 0 "${authorities_count}"); do
containers+=("Node${index}")
done
docker-compose $(get_compose_file_list "${docker_compose_file}" "${override_file}") up -d "${containers[@]}"
docker compose $(get_compose_file_list "${docker_compose_file}" "${override_file}") up -d "${containers[@]}"
}

function archive_logs() {
Expand All @@ -137,7 +137,7 @@ function archive_logs() {
pushd $(mktemp -d) > /dev/null
for index in $(seq 0 "${node_count}"); do
echo "Archiving "Node${index}" logs..."
docker-compose ${compose_file_list} logs --no-color --no-log-prefix "Node${index}" > "Node${index}.log"
docker compose ${compose_file_list} logs --no-color --no-log-prefix "Node${index}" > "Node${index}.log"
done
tar -czf "${tarball_output}" Node*
popd > /dev/null
Expand Down
28 changes: 0 additions & 28 deletions .github/workflows/on-pull-request-change.yml

This file was deleted.

10 changes: 10 additions & 0 deletions .github/workflows/on-pull-request-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ concurrency:
cancel-in-progress: true

jobs:
check-pr-title:
name: Check PR title
runs-on: ubuntu-20.04
steps:
- name: Check PR title
uses: Cardinal-Cryptography/github-actions/check-pr-title@v7
with:
pr-title: ${{ github.event.pull_request.title }}
regexp: '(A0|L1)-[0-9]+'

run-liminal-ci-cd:
if: contains(github.event.pull_request.labels.*.name, 'liminal-CI')
name: Run liminal checks on PR
Expand Down
4 changes: 2 additions & 2 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 bin/node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aleph-node"
version = "0.13.3"
version = "0.13.4"
description = "Aleph node binary"
build = "build.rs"
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion bin/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aleph-runtime"
version = "0.13.3"
version = "0.13.4"
license = "GPL-3.0-or-later"
authors.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion bin/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("aleph-node"),
impl_name: create_runtime_str!("aleph-node"),
authoring_version: 1,
spec_version: 73,
spec_version: 74,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 18,
Expand Down

0 comments on commit b43d7fe

Please sign in to comment.