From fc6c3908185259b5dc752e3acd8a01201e21abda Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 15 May 2021 12:55:18 +0100 Subject: [PATCH] rename master branch to main #nolog --- bin/release | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/release b/bin/release index df18137..bf229ab 100755 --- a/bin/release +++ b/bin/release @@ -36,7 +36,7 @@ python setup.py sdist bdist_wheel --universal git add $VERSION_FILE CHANGES.md git commit -m "Release $VERSION" git tag -f v$VERSION -git push --tags origin master +git push --tags origin main read -p "Press any key to submit to PyPI or Ctrl-C to abort..." -n1 -s twine upload dist/* @@ -45,5 +45,5 @@ NEW_VERSION="${VERSION%.*}.$((${VERSION##*.}+1))dev" sed -i "" "s/^__version__ = '.*'$/__version__ = '$NEW_VERSION'/" $VERSION_FILE git add $VERSION_FILE git commit -m "Version $NEW_VERSION" -git push origin master +git push origin main echo "Development is now open on version $NEW_VERSION!"