bump to 1.0.2

This commit is contained in:
lpm0073 2022-10-11 14:27:11 -05:00
parent bc7868a85b
commit ce60deefd6
4 changed files with 11 additions and 5 deletions

View File

@ -164,7 +164,7 @@ add a snippet of this form to openedx_devops/.github/workflows/build-openedx.yml
with: with:
repository: wp-oauth-backend repository: wp-oauth-backend
repository-organization: lpm0073 repository-organization: lpm0073
repository-ref: v1.0.1 repository-ref: v1.0.2
Sample lms log output Sample lms log output

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"
[project] [project]
name = "wp-oauth-backend_lpm0073" name = "wp-oauth-backend_lpm0073"
version = "1.0.1" version = "1.0.2"
authors = [ authors = [
{ name="Lawrence McDaniel", email="lpm0073@gmail.com" }, { name="Lawrence McDaniel", email="lpm0073@gmail.com" },
] ]

View File

@ -13,6 +13,12 @@
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
python -m pip install --upgrade build python -m pip install --upgrade build
sudo rm -r build
sudo rm -r dist
sudo rm -r wp_oauth_backend.egg-info
sudo rm -r wp_oauth_backend_lpm0073.egg-info
python3 -m build --sdist ./ python3 -m build --sdist ./
python3 -m build --wheel ./ python3 -m build --wheel ./
@ -20,7 +26,7 @@ python3 -m pip install --upgrade twine
twine check dist/* twine check dist/*
# PyPi test # PyPi test
twine upload --repository testpypi dist/* twine upload --skip-existing --repository testpypi dist/*
# PyPi # PyPi
twine upload dist/* #twine upload --skip-existing dist/*

View File

@ -1 +1 @@
__version__ = "1.0.1" __version__ = "1.0.2"