Skip to content

Commit

Permalink
Preparing for 1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
markopoloparadox committed Sep 21, 2022
1 parent 8258c65 commit dd0cf27
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion runtime/alphanet/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
/// Version of the runtime specification. A full-node will not attempt to use its native
/// runtime in substitute for the on-chain Wasm runtime unless all of `spec_name`,
/// `spec_version` and `authoring_version` are the same between Wasm and native.
spec_version: 6,
spec_version: 7,

/// Version of the implementation of the specification. Nodes are free to ignore this; it
/// serves only as an indication that the code is different; as long as the other two versions
Expand Down
16 changes: 8 additions & 8 deletions scripts/run_dockerimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ do
done

if [ -z "$flavour" ]; then
select flavour in ubutnu_2004 ubuntu_2204 fedora_35 fedora_36 debian_11 arch
select flavour in ubuntu-2004 ubuntu-2204 fedora-35 fedora-36 debian-11 arch
do
break;
done
fi

# Get Image name
if [ "$flavour" = "ubutnu_2004" ]; then
if [ "$flavour" = "ubutnu-2004" ]; then
imageName="ubuntu-2004.Dockerfile"
elif [ "$flavour" = "ubuntu_2204" ]; then
elif [ "$flavour" = "ubuntu-2204" ]; then
imageName="ubuntu-2204.Dockerfile"
elif [ "$flavour" = "fedora_35" ]; then
elif [ "$flavour" = "fedora-35" ]; then
imageName="fedora-35.Dockerfile"
elif [ "$flavour" = "fedora_36" ]; then
elif [ "$flavour" = "fedora-36" ]; then
imageName="fedora-36.Dockerfile"
elif [ "$flavour" = "debian_11" ]; then
imageName="debian_11.Dockerfile"
elif [ "$flavour" = "debian-11" ]; then
imageName="debian-11.Dockerfile"
elif [ "$flavour" = "arch" ]; then
imageName="arch.Dockerfile"
else
Expand All @@ -45,4 +45,4 @@ podman build -t tchain -f ./dockerimages/$imageName .

# Run the image
mkdir -p output/$flavour
podman run --rm -v ./output/$flavour:/output tchain
podman run --rm -v ./output/$flavour:/output tchain

0 comments on commit dd0cf27

Please sign in to comment.