All the Blender Institute Python webprojects are moving to Poetry; it works better than Pipenv in various regards.
21 lines
607 B
Bash
Executable File
21 lines
607 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: $0 new-version" >&2
|
|
exit 1
|
|
fi
|
|
|
|
poetry version $1
|
|
sed "s/version = '[^']*'/version = '$1'/" -i docs/conf.py
|
|
sed "s/release = '[^']*'/release = '$1'/" -i docs/conf.py
|
|
sed "s/__version__\s*=\s*'[^']*'/__version__ = '$1'/" -i blender_asset_tracer/__init__.py
|
|
|
|
git diff
|
|
echo
|
|
echo "Don't forget to commit and tag:"
|
|
echo git commit -m \'Bumped version to $1\' pyproject.toml blender_asset_tracer/__init__.py docs/conf.py
|
|
echo git tag -a v$1 -m \'Tagged version $1\'
|
|
echo
|
|
echo "Build the package & upload to PyPi using:"
|
|
echo "poetry build && poetry publish"
|