forked from OpenLineage/OpenLineage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-version.sh
executable file
·177 lines (154 loc) · 6.21 KB
/
new-version.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# NOTE: This script was inspired by https://github.com/MarquezProject/marquez/blob/main/new-version.sh
#
# Requirements:
# * You're on the 'main' branch
# * You've installed 'bump2version'
#
# Usage: $ ./new-version.sh --release-version RELEASE_VERSION --next-version NEXT_VERSION
set -e
title() {
echo -e "\033[1m${1}\033[0m"
}
usage() {
echo "Usage: ./$(basename -- "${0}") --release-version RELEASE_VERSION --next-version NEXT_VERSION"
echo "A script used to release OpenLineage"
echo
title "EXAMPLES:"
echo " # Bump version ('-SNAPSHOT' will automatically be appended to '0.0.2')"
echo " $ ./new-version.sh -r 0.0.1 -n 0.0.2"
echo
echo " # Bump version (with '-SNAPSHOT' already appended to '0.0.2')"
echo " $ ./new-version.sh -r 0.0.1 -n 0.0.2-SNAPSHOT"
echo
echo " # Bump release candidate"
echo " $ ./new-version.sh -r 0.0.1-rc.1 -n 0.0.2-rc.2"
echo
echo " # Bump release candidate without push"
echo " $ ./new-version.sh -r 0.0.1-rc.1 -n 0.0.2-rc.2 -p"
echo
title "ARGUMENTS:"
echo " -r, --release-version string the release version (ex: X.Y.Z, X.Y.Z-rc.*)"
echo " -n, --next-version string the next version (ex: X.Y.Z, X.Y.Z-SNAPSHOT)"
echo
title "FLAGS:"
echo " -p, --no-push local changes are not automatically pushed to the remote repository"
exit 1
}
readonly SEMVER_REGEX="^[0-9]+(\.[0-9]+){2}((-rc\.[0-9]+)?(-SNAPSHOT)?)$" # X.Y.Z
# X.Y.Z-rc.*
# X.Y.Z-rc.*-SNAPSHOT
# X.Y.Z-SNAPSHOT
# Change working directory to project root
project_root=$(git rev-parse --show-toplevel)
cd "${project_root}/"
# Verify bump2version is installed
if [[ ! $(type -P bump2version) ]]; then
echo "bump2version not installed! Please see https://github.com/c4urself/bump2version#installation"
exit 1;
fi
if [[ $# -eq 0 ]] ; then
usage
fi
PUSH="true"
while [ $# -gt 0 ]; do
case $1 in
-r|--release-version)
shift
RELEASE_VERSION="${1}"
;;
-n|--next-version)
shift
NEXT_VERSION="${1}"
;;
-p|--no-push)
PUSH="false"
;;
-h|--help)
usage
;;
*) exit 1
;;
esac
shift
done
branch=$(git symbolic-ref --short HEAD)
if [[ "${branch}" != "main" ]]; then
echo "error: you may only release on 'main'!"
exit 1;
fi
# Ensure no unstaged changes are present in working directory
if [[ -n "$(git status --porcelain --untracked-files=no)" ]] ; then
echo "error: you have unstaged changes in your working directory!"
exit 1;
fi
# Ensure valid versions
VERSIONS=($RELEASE_VERSION $NEXT_VERSION)
for VERSION in "${VERSIONS[@]}"; do
if [[ ! "${VERSION}" =~ ${SEMVER_REGEX} ]]; then
echo "Error: Version '${VERSION}' must match '${SEMVER_REGEX}'"
exit 1
fi
done
# Ensure python module version matches X.Y.Z or X.Y.ZrcN (see: https://www.python.org/dev/peps/pep-0440/),
PYTHON_RELEASE_VERSION=${RELEASE_VERSION}
if [[ "${RELEASE_VERSION}" == *-rc.? ]]; then
RELEASE_CANDIDATE=${RELEASE_VERSION##*-}
PYTHON_RELEASE_VERSION="${RELEASE_VERSION%-*}${RELEASE_CANDIDATE//.}"
fi
# (1) Bump python module versions
PYTHON_MODULES=(client/python/ integration/common/ integration/airflow/ integration/dbt/)
for PYTHON_MODULE in "${PYTHON_MODULES[@]}"; do
(cd "${PYTHON_MODULE}" && bump2version manual --new-version "${PYTHON_RELEASE_VERSION}" --allow-dirty)
done
# (2) Bump java module versions
perl -i -pe"s/^version=.*/version=${RELEASE_VERSION}/g" ./client/java/gradle.properties
perl -i -pe"s/^version=.*/version=${RELEASE_VERSION}/g" ./integration/spark/gradle.properties
# (3) Bump version in docs
perl -i -pe"s/<version>.*/<version>${RELEASE_VERSION}<\/version>/g" ./integration/spark/README.md
perl -i -pe"s/openlineage-spark:[[:alnum:]\.-]*/openlineage-spark:${RELEASE_VERSION}/g" ./integration/spark/README.md
perl -i -pe"s/openlineage-spark-.*jar/openlineage-spark-${RELEASE_VERSION}.jar/g" ./integration/spark/README.md
# (4) Prepare release commit
git commit -sam "Prepare for release ${RELEASE_VERSION}"
# (5) Pull latest tags, then prepare release tag
git fetch --all --tags
git tag -a "${RELEASE_VERSION}" -m "openlineage ${RELEASE_VERSION}"
# (6) Prepare next development version
PYTHON_MODULES=(client/python/ integration/common/ integration/airflow/ integration/dbt/)
for PYTHON_MODULE in "${PYTHON_MODULES[@]}"; do
(cd "${PYTHON_MODULE}" && bump2version manual --new-version "${NEXT_VERSION}" --allow-dirty)
done
# Append '-SNAPSHOT' to 'NEXT_VERSION' if a release candidate, or missing
# (ex: '-SNAPSHOT' will be appended to X.Y.Z or X.Y.Z-rc.N)
if [[ "${NEXT_VERSION}" == *-rc.? ||
! "${NEXT_VERSION}" == *-SNAPSHOT ]]; then
NEXT_VERSION="${NEXT_VERSION}-SNAPSHOT"
fi
perl -i -pe"s/^version=.*/version=${NEXT_VERSION}/g" integration/spark/gradle.properties
perl -i -pe"s/^version=.*/version=${NEXT_VERSION}/g" client/java/gradle.properties
echo "version ${NEXT_VERSION}" > integration/spark/src/test/resources/io/openlineage/spark/agent/client/version.properties
# (7) Prepare next development version commit
git commit -sam "Prepare next development version"
# (8) Push commits and tag
if [[ ! ${PUSH} = "false" ]]; then
git push origin main && git push origin "${RELEASE_VERSION}"
else
echo "...skipping push; to push manually, use 'git push origin main && git push origin "${RELEASE_VERSION}"'"
fi
echo "DONE!"