diff --git a/CHANGELOG.md b/CHANGELOG.md index 13ab3d095..22f55e6d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,15 @@ instructions, because git commits are used to generate release notes: + +## v17.4.0 (2024-06-10) + +- [Bugfix] Make plugin compatible with Python 3.12 by removing dependency on `pkg_resources`. (by @regisb) + +- [Bugfix] *.scss files in cms directory were not rendered in the tutor environment because they are stored in a "partials" subdirectory. (by @Talha-Rizwan) + +- [Improvement] Add styles for Profile and Account MFE and increase container width for better readability. (by @tanveer65) + ## v17.3.0 (2024-03-04) diff --git a/changelog.d/20240212_115536_regis_pkg_resources.md b/changelog.d/20240212_115536_regis_pkg_resources.md deleted file mode 100644 index 35b6d2015..000000000 --- a/changelog.d/20240212_115536_regis_pkg_resources.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Make plugin compatible with Python 3.12 by removing dependency on `pkg_resources`. (by @regisb) diff --git a/changelog.d/20240220_174954_talharizwan667_indigo_cms_scss.md b/changelog.d/20240220_174954_talharizwan667_indigo_cms_scss.md deleted file mode 100644 index bbf50eb85..000000000 --- a/changelog.d/20240220_174954_talharizwan667_indigo_cms_scss.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] *.scss files in cms directory were not rendered in the tutor environment because they are stored in a "partials" subdirectory. (by @Talha-Rizwan) diff --git a/tutorindigo/__about__.py b/tutorindigo/__about__.py index f49958098..4872a5c3c 100644 --- a/tutorindigo/__about__.py +++ b/tutorindigo/__about__.py @@ -1 +1 @@ -__version__ = "17.3.0" +__version__ = "17.4.0"