simplifying committing of changed versioned files
This commit is contained in:
parent
58c37c6fdf
commit
021303a2af
1 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
|
set -euo pipefail # Bash safemode
|
||||||
|
|
||||||
local version=$1
|
local version=$1
|
||||||
if [[ -z "${version}" ]]; then
|
if [[ -z "${version}" ]]; then
|
||||||
echo "USAGE: $0 1.3.2"
|
echo "USAGE: $0 1.3.2"
|
||||||
|
|
@ -15,7 +17,7 @@ main() {
|
||||||
|
|
||||||
git checkout -b version-${version}
|
git checkout -b version-${version}
|
||||||
# Commit the new version
|
# Commit the new version
|
||||||
git commit setup.py moto/__init__.py -m "bumping to version ${version}"
|
git commit -a -m "bumping to version ${version}"
|
||||||
# Commit an updated IMPLEMENTATION_COVERAGE.md
|
# Commit an updated IMPLEMENTATION_COVERAGE.md
|
||||||
make implementation_coverage || true
|
make implementation_coverage || true
|
||||||
# Open a PR
|
# Open a PR
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue