diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..9673270 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# CHANGE LOG + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [0.1.0] (2022-12-28) + +- added openedx_plugin_api code sample +- added openedx_plugin_cms code sample +- added openedx_plugin_mobile_api code sample +- added Waffle Switch feature toggling to all major features in this repo +- added Django Signals receivers scaffolding for all major signals published by openedx +- added middleware to optionally restore the Django Admin login page +- added wordpress_oauth2_backend.py diff --git a/CHANGELOG.rst b/CHANGELOG.rst deleted file mode 100644 index e69de29..0000000 diff --git a/openedx_plugin/version.py b/openedx_plugin/version.py index af8c7de..d8981f2 100644 --- a/openedx_plugin/version.py +++ b/openedx_plugin/version.py @@ -6,4 +6,4 @@ usage: semantic version control for openedx_plugin """ -__version__ = "0.0.1" +__version__ = "0.1.0" diff --git a/openedx_plugin_api/version.py b/openedx_plugin_api/version.py index 9b343f9..90bafc7 100644 --- a/openedx_plugin_api/version.py +++ b/openedx_plugin_api/version.py @@ -6,4 +6,4 @@ usage: version control for openedx_plugin_api plugin """ -__version__ = "0.0.1" +__version__ = "0.1.0" diff --git a/openedx_plugin_cms/version.py b/openedx_plugin_cms/version.py index f102a9c..3dc1f76 100644 --- a/openedx_plugin_cms/version.py +++ b/openedx_plugin_cms/version.py @@ -1 +1 @@ -__version__ = "0.0.1" +__version__ = "0.1.0" diff --git a/openedx_plugin_mobile_api/version.py b/openedx_plugin_mobile_api/version.py index c296e7b..465df24 100644 --- a/openedx_plugin_mobile_api/version.py +++ b/openedx_plugin_mobile_api/version.py @@ -6,4 +6,4 @@ usage: semantic version control for openedx_plugin_mobile_api """ -__version__ = "0.0.1" +__version__ = "0.1.0"