Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Commit 6966731

Browse files
authored
Bump master to 2.2.0 (#9517)
* parity-version: bump master to 2.2.0 * ci: update branch version references * docker: release master to latest * deps: bump fs-swap to 0.2.4
1 parent 530aac0 commit 6966731

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ publish-linux-snap-armhf:
256256

257257
publish-docker-parity-amd64: &publish_docker
258258
stage: publish
259-
only: *publishable_branches
259+
only: *releaseable_branches
260260
cache: {}
261261
dependencies:
262262
- build-linux-ubuntu-amd64

Cargo.lock

Lines changed: 9 additions & 9 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
@@ -2,7 +2,7 @@
22
description = "Parity Ethereum client"
33
name = "parity-ethereum"
44
# NOTE Make sure to update util/version/Cargo.toml as well
5-
version = "2.1.0"
5+
version = "2.2.0"
66
license = "GPL-3.0"
77
authors = ["Parity Technologies <[email protected]>"]
88

scripts/gitlab/package-snap.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
set -e # fail on any error
44
set -u # treat unset variables as error
55
case ${CI_COMMIT_REF_NAME} in
6-
nightly|*v2.1*) export GRADE="devel";;
7-
beta|*v2.0*) export GRADE="stable";;
8-
stable|*v1.11*) export GRADE="stable";;
6+
nightly|*v2.2*) export GRADE="devel";;
7+
beta|*v2.1*) export GRADE="stable";;
8+
stable|*v2.0*) export GRADE="stable";;
99
*) echo "No release" exit 0;;
1010
esac
1111
SNAP_PACKAGE="parity_"$VERSION"_"$BUILD_ARCH".snap"

scripts/gitlab/publish-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e # fail on any error
44
set -u # treat unset variables as error
55

6-
if [ "$CI_COMMIT_REF_NAME" == "beta" ];
6+
if [ "$CI_COMMIT_REF_NAME" == "master" ];
77
then export DOCKER_BUILD_TAG="latest";
88
else export DOCKER_BUILD_TAG=$CI_COMMIT_REF_NAME;
99
fi

scripts/gitlab/publish-snap.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ set -e # fail on any error
44
set -u # treat unset variables as error
55

66
case ${CI_COMMIT_REF_NAME} in
7-
nightly|*v2.1*) export CHANNEL="edge";;
8-
beta|*v2.0*) export CHANNEL="beta";;
9-
stable|*v1.11*) export CHANNEL="stable";;
7+
nightly|*v2.2*) export CHANNEL="edge";;
8+
beta|*v2.1*) export CHANNEL="beta";;
9+
stable|*v2.0*) export CHANNEL="stable";;
1010
*) echo "No release" exit 0;;
1111
esac
1212
echo "Release channel :" $CHANNEL " Branch/tag: " $CI_COMMIT_REF_NAME

scripts/gitlab/push.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ RELEASE_TABLE="$(echo "${RELEASE_TABLE//\$VERSION/${VERSION}}")"
1414
#The text in the file CANGELOG.md before which the table with links is inserted. Must be present in this file necessarily
1515
REPLACE_TEXT="The full list of included changes:"
1616
case ${CI_COMMIT_REF_NAME} in
17-
nightly|*v2.1*) NAME="Parity "$VERSION" nightly";;
18-
beta|*v2.0*) NAME="Parity "$VERSION" beta";;
19-
stable|*v1.11*) NAME="Parity "$VERSION" stable";;
17+
nightly|*v2.2*) NAME="Parity "$VERSION" nightly";;
18+
beta|*v2.1*) NAME="Parity "$VERSION" beta";;
19+
stable|*v2.0*) NAME="Parity "$VERSION" stable";;
2020
*) echo "No release" exit 0;;
2121
esac
2222
cd artifacts

util/version/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[package]
44
name = "parity-version"
55
# NOTE: this value is used for Parity Ethereum version string (via env CARGO_PKG_VERSION)
6-
version = "2.1.0"
6+
version = "2.2.0"
77
authors = ["Parity Technologies <[email protected]>"]
88
build = "build.rs"
99

0 commit comments

Comments
 (0)