This repository was archived by the owner on Nov 6, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +22
-22
lines changed Expand file tree Collapse file tree 8 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ publish-linux-snap-armhf:
256256
257257publish-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
Original file line number Diff line number Diff line change 22description = " Parity Ethereum client"
33name = " parity-ethereum"
44# NOTE Make sure to update util/version/Cargo.toml as well
5- version = " 2.1 .0"
5+ version = " 2.2 .0"
66license = " GPL-3.0"
77authors = [" Parity Technologies <admin@parity.io>" ]
88
Original file line number Diff line number Diff line change 33set -e # fail on any error
44set -u # treat unset variables as error
55case ${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;;
1010esac
1111SNAP_PACKAGE=" parity_" $VERSION " _" $BUILD_ARCH " .snap"
Original file line number Diff line number Diff line change 33set -e # fail on any error
44set -u # treat unset variables as error
55
6- if [ " $CI_COMMIT_REF_NAME " == " beta " ];
6+ if [ " $CI_COMMIT_REF_NAME " == " master " ];
77then export DOCKER_BUILD_TAG=" latest" ;
88else export DOCKER_BUILD_TAG=$CI_COMMIT_REF_NAME ;
99fi
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ set -e # fail on any error
44set -u # treat unset variables as error
55
66case ${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;;
1111esac
1212echo " Release channel :" $CHANNEL " Branch/tag: " $CI_COMMIT_REF_NAME
Original file line number Diff line number Diff 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
1515REPLACE_TEXT=" The full list of included changes:"
1616case ${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;;
2121esac
2222cd artifacts
Original file line number Diff line number Diff line change 33[package ]
44name = " 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"
77authors = [" Parity Technologies <admin@parity.io>" ]
88build = " build.rs"
99
You can’t perform that action at this time.
0 commit comments