5 Commits

Author SHA1 Message Date
7a958c8fa3 Merge pull request #3 from lpm0073/python3
bump version
2022-12-20 14:59:12 -05:00
644799445a bump version 2022-12-20 19:49:30 +00:00
3eda26893d Merge pull request #2 from lpm0073/python3
Consistently use python3 in Makefile
2022-12-20 13:49:20 -06:00
ef7714b3bf Changelog 2022-12-20 19:47:21 +00:00
526a40ab84 Consistently use python3 in Makefile 2022-12-20 19:46:34 +00:00
4 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
# CHANGE LOG # CHANGE LOG
## Version 1.0.6 (2022-12-20)
- standardize usage of python3 in Makefile
## Version 1.0.5 (2022-12-20) ## Version 1.0.5 (2022-12-20)
- version bumps - version bumps

View File

@ -9,7 +9,7 @@ report:
build: build:
python3 -m pip install --upgrade setuptools wheel twine python3 -m pip install --upgrade setuptools wheel twine
python -m pip install --upgrade build python3 -m pip install --upgrade build
if [ -d "./build" ]; then sudo rm -r build; fi if [ -d "./build" ]; then sudo rm -r build; fi
if [ -d "./dist" ]; then sudo rm -r dist; fi if [ -d "./dist" ]; then sudo rm -r dist; fi

View File

@ -1 +1 @@
__version__ = "1.0.5" __version__ = "1.0.6"

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"
[project] [project]
name = "edx-oauth2-wordpress-backend" name = "edx-oauth2-wordpress-backend"
version = "1.0.5" version = "1.0.6"
authors = [ authors = [
{ name="Lawrence McDaniel", email="lpm0073@gmail.com" }, { name="Lawrence McDaniel", email="lpm0073@gmail.com" },
] ]