File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020# release. 'dev' as a _version_extra string means this is a development
2121# version
2222_version_major = 7
23- _version_minor = 10
23+ _version_minor = 11
2424_version_patch = 0
2525_version_extra = '.dev'
2626# _version_extra = 'b1'
27- _version_extra = '' # Uncomment this for full releases
27+ # _version_extra = '' # Uncomment this for full releases
2828
2929# Construct full version string from these.
3030_ver = [_version_major , _version_minor , _version_patch ]
Original file line number Diff line number Diff line change 8181git commit -am " release $VERSION " -S
8282
8383echo
84- echo " git push origin \$ BRANCH ?"
85- echo " Press enter to continue"
84+ echo $BLUE " git push origin \$ BRANCH ($BRANCH )?" $NOR
85+ echo $GREEN " Make sure you can push" $NOR
86+ echo $GREEN " Press enter to continue" $NOR
8687read
8788git push origin $BRANCH
88- # git tag -am "release $VERSION" "$VERSION" -s
89- # git push origin $VERSION
89+
90+ echo
91+ echo " Let's tag : git tag -am \" release $VERSION \" \" $VERSION \" -s"
92+ echo $GREEN " Press enter to wtagcommit" $NOR
93+ read
94+ git tag -am " release $VERSION " " $VERSION " -s
95+
96+ echo
97+ echo $BLUE " And push the tag: git push origin \$ VERSION ?" $NOR
98+ echo $GREEN " Press enter to continue" $NOR
99+ read
100+ git push origin $VERSION
101+
102+ echo
103+ echo $BLUE " let's : git checkout $VERSION " $NOR
104+ echo $GREEN " Press enter to continue" $NOR
105+ read
106+ git checkout $VERSION
107+
90108
You can’t perform that action at this time.
0 commit comments