diff --git a/CHANGELOG.md b/CHANGELOG.md index d72c641..226d4d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGE LOG +## Version 1.0.7 (2023-08-12) + +- match version requirements in pyproject.toml to those in requirements/stable-psa.txt + ## Version 1.0.6 (2022-12-20) - standardize usage of python3 in Makefile diff --git a/oauth2_wordpress/__about__.py b/oauth2_wordpress/__about__.py index 382021f..9e604c0 100644 --- a/oauth2_wordpress/__about__.py +++ b/oauth2_wordpress/__about__.py @@ -1 +1 @@ -__version__ = "1.0.6" +__version__ = "1.0.7" diff --git a/pyproject.toml b/pyproject.toml index e5b419a..d30bce2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__" [project] name = "edx-oauth2-wordpress-backend" -version = "1.0.6" +version = "1.0.7" authors = [ { name="Lawrence McDaniel", email="lpm0073@gmail.com" }, ] @@ -17,7 +17,7 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "social-auth-core>=4.2.0", + "social-auth-core==4.3.0", "social-auth-app-django==5.0.0" ] keywords = ["Open edX", "oauth", "Wordpress"]