From 6615865e70013b7f996563af9ab93093bc28b884 Mon Sep 17 00:00:00 2001 From: Wilfried BARADAT Date: Tue, 21 May 2024 15:15:23 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96(minor)=20prepare=200.2.0=20distrib?= =?UTF-8?q?ution=20release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added - Send LTI course id to the frontend - Add a warren migration check CLI command Changed - Restrict dashboards access to instructors and administrators - Change cache key to indicator attributes instead of LRS query parameters Fixed - Fix Breadcrumb trail order to be `organization > course > session` --- CHANGELOG.md | 6 +++++- src/api/core/warren/__init__.py | 2 +- src/app/version.json | 2 +- src/app/warren/__init__.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b01d021d..beb80cd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ and this project adheres to ## [Unreleased] + +## [0.2.0] - 2024-05-21 + ### Added - Send LTI course id to the frontend @@ -47,5 +50,6 @@ and this project adheres to - Encapsulate statements pre-processing in a Mixin class - Factorize Video indicators -[unreleased]: https://github.com/openfun/warren/compare/v0.1.0...main +[unreleased]: https://github.com/openfun/warren/compare/v0.2.0...main +[0.2.0]: https://github.com/openfun/warren/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/openfun/warren/compare/abae78e...v0.1.0 diff --git a/src/api/core/warren/__init__.py b/src/api/core/warren/__init__.py index 66e93642..6cf152cd 100644 --- a/src/api/core/warren/__init__.py +++ b/src/api/core/warren/__init__.py @@ -1,3 +1,3 @@ """Warren package.""" -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/src/app/version.json b/src/app/version.json index b228029e..a774ef81 100644 --- a/src/app/version.json +++ b/src/app/version.json @@ -1,6 +1,6 @@ { "source" : "https://github.com/openfun/warren", - "version": "0.1.0", + "version": "0.2.0", "commit" : "fixme", "build" : "fixme" } diff --git a/src/app/warren/__init__.py b/src/app/warren/__init__.py index c3bfa45a..a23b7296 100644 --- a/src/app/warren/__init__.py +++ b/src/app/warren/__init__.py @@ -1,3 +1,3 @@ """Warren app.""" -__version__ = "0.1.0" +__version__ = "0.2.0"