From 864799c8197c8c168c992c9361e93a6d7600520c Mon Sep 17 00:00:00 2001 From: Navin Karkera Date: Tue, 29 Aug 2023 14:10:13 +0200 Subject: [PATCH] chore: bump version and update changelog --- CHANGELOG.rst | 9 +++++++++ skill_tagging/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6adab59..8433b36 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,6 +16,15 @@ Unreleased * +[0.2.0] - 2023-08-29 +************************************************ + +Changed +======= + +* Remove hard coded signal handler so that openedx_events producer config can + be used to push events to event bus in a configurable way. + [0.1.2] - 2023-08-18 ************************************************ diff --git a/skill_tagging/__init__.py b/skill_tagging/__init__.py index 144ff08..c0e11ef 100644 --- a/skill_tagging/__init__.py +++ b/skill_tagging/__init__.py @@ -2,7 +2,7 @@ Django app plugin for fetching and verifying tags for xblock skills. """ -__version__ = '0.1.2' +__version__ = '0.2.0' # pylint: disable=invalid-name default_app_config = 'skill_tagging.apps.SkillTaggingConfig'