6 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
e4bb3ac4be bump to v.1.0.5 2022-12-20 13:26:39 -06:00
4 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,13 @@
# CHANGE LOG
## Version 1.0.6 (2022-12-20)
- standardize usage of python3 in Makefile
## Version 1.0.5 (2022-12-20)
- version bumps
## Version 1.0.4 (2022-11-09)
- add property for URL

View File

@ -9,7 +9,7 @@ report:
build:
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 "./dist" ]; then sudo rm -r dist; fi

View File

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

View File

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