File tree 1 file changed +24
-5
lines changed
1 file changed +24
-5
lines changed Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
# ==============================================================================
17
17
18
- # usage: bash tools/update_release_version.sh <release_number>
18
+ # Usage
19
+ if [ $# -lt 1 ]; then
20
+ echo " Usage: bash tools/update_release_version.sh <list_of_release_numbers>"
21
+ echo " e.g. bash tools/update_release_version.sh 2.3.0 2.3.1"
22
+ exit 1
23
+ fi
19
24
20
- sed -ri " s/(TF_VERSION=|tensorflow(-cpu)*(~|=)=|tf-version: \[')[0-9]+[a-zA-Z0-9_.-]+/\1$1 /g" \
21
- .github/workflows/release.yml \
25
+ last_version=${BASH_ARGV[0]}
26
+ tf_version=' '
27
+ for ver in $@
28
+ do
29
+ if [ -z $tf_version ]; then
30
+ tf_version=" '$ver '"
31
+ else
32
+ tf_version=" $tf_version , '$ver '"
33
+ fi
34
+ done
35
+ echo $tf_version
36
+ echo $last_version
37
+ sed -ri " s/(tf-version: \[)'.+'/\1$tf_version /g" \
38
+ .github/workflows/release.yml
39
+ sed -ri " s/(tensorflow(-cpu)*(~|=)=)[0-9]+[a-zA-Z0-9_.-]+/\1$1 /g" \
22
40
CONTRIBUTING.md \
23
- tools/docker/cpu_tests.Dockerfile \
24
41
tools/install_deps/tensorflow-cpu.txt \
25
- tools/install_deps/tensorflow.txt \
42
+ tools/install_deps/tensorflow.txt
43
+ sed -ri " s/(TF_VERSION=)\S+/\1$last_version /g" \
44
+ tools/docker/cpu_tests.Dockerfile \
26
45
tools/run_gpu_tests.sh \
27
46
tools/build_dev_container.sh
You can’t perform that action at this time.
0 commit comments