From e469ed968c86a6aa3bdb62e61a044fd1d7b58291 Mon Sep 17 00:00:00 2001 From: Wilfried BARADAT Date: Fri, 29 Nov 2024 15:58:11 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96(minor)=20prepare=200.6.0=20release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added - Add and protect `wiki_article` and `wiki_articlerevision` tables - Add `created_at` and `updated_at` fields to response from user API Fixed - Scrub `email` and `username` fields from logs and exceptions sent to Sentry --- CHANGELOG.md | 5 ++++- src/app/mork/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01eaaa4..2565c03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to ## [Unreleased] +## [0.6.0] - 2024-12-02 + ### Added - Add and protect `wiki_article` and `wiki_articlerevision` tables @@ -87,7 +89,8 @@ and this project adheres to - Add celery task to warn inactive users by email - Add celery task to delete inactive users from edx database -[unreleased]: https://github.com/openfun/mork/compare/v0.5.0...main +[unreleased]: https://github.com/openfun/mork/compare/v0.6.0...main +[0.6.0]: https://github.com/openfun/mork/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/openfun/mork/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/openfun/mork/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/openfun/mork/compare/v0.2.0...v0.3.0 diff --git a/src/app/mork/__init__.py b/src/app/mork/__init__.py index 4e458ad..e8ca0ae 100644 --- a/src/app/mork/__init__.py +++ b/src/app/mork/__init__.py @@ -1,3 +1,3 @@ """Mork module.""" -__version__ = "0.5.0" +__version__ = "0.6.0"