diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a06831..e4f154f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - enhance setup.up setup() meta data - bump classifier from alpha to beta - refactor in order to make repo more condusive to uploading to PyPi +- version bumps to black, flake8 and their supporting plugins +- line entire code base for PEP 263 and B950 compliance +- setup pyproject.toml for PyPi publishing ## [0.1.2] (2022-3-29) diff --git a/openedx_plugin/version.py b/openedx_plugin/version.py index 48509da..8f1208b 100644 --- a/openedx_plugin/version.py +++ b/openedx_plugin/version.py @@ -7,4 +7,4 @@ usage: semantic version control for openedx_plugin """ -__version__ = "0.1.1" +__version__ = "0.1.3" diff --git a/pyproject.toml b/pyproject.toml index 4bce068..f15f2db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ build-backend = "setuptools.build_meta:__legacy__" #------------------------------------------------------------------------------ [project] name = "openedx-plugin-example" -version = "0.1.1" +version = "0.1.3" authors = [ { name="Lawrence McDaniel", email="lpm0073@gmail.com" } ]