diff --git a/CHANGELOG.md b/CHANGELOG.md index dd21ac1d..1c958832 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.2] - 2024-07-03 + +### Fixed + +- Fix LTI roles model to handle additional roles from Moodle LTI launch requests + ## [0.3.1] - 2024-06-26 ### Added @@ -69,7 +75,8 @@ and this project adheres to - Encapsulate statements pre-processing in a Mixin class - Factorize Video indicators -[unreleased]: https://github.com/openfun/warren/compare/v0.3.1...main +[unreleased]: https://github.com/openfun/warren/compare/v0.3.2...main +[0.3.2]: https://github.com/openfun/warren/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/openfun/warren/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/openfun/warren/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/openfun/warren/compare/v0.1.0...v0.2.0 diff --git a/src/api/core/warren/__init__.py b/src/api/core/warren/__init__.py index 8e86bd6c..456eecbe 100644 --- a/src/api/core/warren/__init__.py +++ b/src/api/core/warren/__init__.py @@ -1,3 +1,3 @@ """Warren package.""" -__version__ = "0.3.1" +__version__ = "0.3.2" diff --git a/src/app/version.json b/src/app/version.json index 23426875..757c2941 100644 --- a/src/app/version.json +++ b/src/app/version.json @@ -1,6 +1,6 @@ { "source" : "https://github.com/openfun/warren", - "version": "0.3.1", + "version": "0.3.2", "commit" : "fixme", "build" : "fixme" } diff --git a/src/app/warren/__init__.py b/src/app/warren/__init__.py index 5967650d..cd8cc850 100644 --- a/src/app/warren/__init__.py +++ b/src/app/warren/__init__.py @@ -1,3 +1,3 @@ """Warren app.""" -__version__ = "0.3.1" +__version__ = "0.3.2"