Skip to content

Commit

Permalink
Release v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier committed Dec 24, 2024
1 parent a9912d7 commit b8c094f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2021"
homepage = "https://hack.ink/polkadot-runtime-releaser"
license = "GPL-3.0"
repository = "https://github.com/hack-ink/polkadot-runtime-releaser"
version = "0.1.3"
version = "0.1.4"

[workspace.dependencies]
# crates.io
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:25.04

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

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Expand Down
2 changes: 1 addition & 1 deletion action/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
- name: Setup Polkadot Runtime Releaser
shell: bash
run: curl \
-L https://github.com/hack-ink/polkadot-runtime-releaser/releases/download/v0.1.3/polkadot-runtime-releaser.tar.gz | \
-L https://github.com/hack-ink/polkadot-runtime-releaser/releases/download/v0.1.4/polkadot-runtime-releaser.tar.gz | \
tar xz && \
chmod u+x prr && \
mv prr /usr/local/bin/prr
Expand Down
2 changes: 1 addition & 1 deletion action/override/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:
ref: ${{ inputs.ref }}
path: runtime
- name: Build runtime
uses: hack-ink/polkadot-runtime-releaser/action/override@v0.1.3
uses: hack-ink/polkadot-runtime-releaser/action/build@v0.1.4
with:
runtime: ${{ inputs.runtime }}
features: ${{ inputs.features }}
Expand Down
2 changes: 1 addition & 1 deletion action/try-runtime/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
chmod +x try-runtime && \
mv try-runtime /usr/local/bin/try-runtime
- name: Build runtime
uses: hack-ink/polkadot-runtime-releaser/action/override@v0.1.3
uses: hack-ink/polkadot-runtime-releaser/action/build@v0.1.4
with:
runtime: ${{ inputs.runtime }}
features: ${{ inputs.features }}
Expand Down
2 changes: 1 addition & 1 deletion cli/src/cli/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct BuildCmd {
#[arg(long, short, value_name = "VER", verbatim_doc_comment)]
toolchain_version: Option<String>,
/// Image version of the <ghcr.io/hack-ink/polkadot-runtime-releaser>.
#[arg(long, short = 'v', value_name = "VER", default_value_t = String::from("0.1.3"), conflicts_with = "override_docker_image")]
#[arg(long, short = 'v', value_name = "VER", default_value_t = String::from("0.1.4"), conflicts_with = "override_docker_image")]
image_version: String,
/// Overwrite the default docker image with the specified one.
/// Use `docker images` to list the available images on your system.
Expand Down

0 comments on commit b8c094f

Please sign in to comment.