Skip to content

Commit b8c094f

Browse files
committed
Release v0.1.4
1 parent a9912d7 commit b8c094f

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ edition = "2021"
1111
homepage = "https://hack.ink/polkadot-runtime-releaser"
1212
license = "GPL-3.0"
1313
repository = "https://github.com/hack-ink/polkadot-runtime-releaser"
14-
version = "0.1.3"
14+
version = "0.1.4"
1515

1616
[workspace.dependencies]
1717
# crates.io

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:25.04
22

33
LABEL maintainer="x@acg.box"
44
LABEL description="An environment for constructing a deterministic polkadot-sdk-based runtime."
5-
LABEL version="0.1.3"
5+
LABEL version="0.1.4"
66

77
RUN apt-get update && \
88
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \

action/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
- name: Setup Polkadot Runtime Releaser
2828
shell: bash
2929
run: curl \
30-
-L https://github.com/hack-ink/polkadot-runtime-releaser/releases/download/v0.1.3/polkadot-runtime-releaser.tar.gz | \
30+
-L https://github.com/hack-ink/polkadot-runtime-releaser/releases/download/v0.1.4/polkadot-runtime-releaser.tar.gz | \
3131
tar xz && \
3232
chmod u+x prr && \
3333
mv prr /usr/local/bin/prr

action/override/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
4040
ref: ${{ inputs.ref }}
4141
path: runtime
4242
- name: Build runtime
43-
uses: hack-ink/polkadot-runtime-releaser/action/override@v0.1.3
43+
uses: hack-ink/polkadot-runtime-releaser/action/build@v0.1.4
4444
with:
4545
runtime: ${{ inputs.runtime }}
4646
features: ${{ inputs.features }}

action/try-runtime/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ runs:
3333
chmod +x try-runtime && \
3434
mv try-runtime /usr/local/bin/try-runtime
3535
- name: Build runtime
36-
uses: hack-ink/polkadot-runtime-releaser/action/override@v0.1.3
36+
uses: hack-ink/polkadot-runtime-releaser/action/build@v0.1.4
3737
with:
3838
runtime: ${{ inputs.runtime }}
3939
features: ${{ inputs.features }}

cli/src/cli/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub struct BuildCmd {
2828
#[arg(long, short, value_name = "VER", verbatim_doc_comment)]
2929
toolchain_version: Option<String>,
3030
/// Image version of the <ghcr.io/hack-ink/polkadot-runtime-releaser>.
31-
#[arg(long, short = 'v', value_name = "VER", default_value_t = String::from("0.1.3"), conflicts_with = "override_docker_image")]
31+
#[arg(long, short = 'v', value_name = "VER", default_value_t = String::from("0.1.4"), conflicts_with = "override_docker_image")]
3232
image_version: String,
3333
/// Overwrite the default docker image with the specified one.
3434
/// Use `docker images` to list the available images on your system.

0 commit comments

Comments
 (0)