diff --git a/CHANGELOG.md b/CHANGELOG.md index a5afe575..efdbacc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,12 @@ instructions, because git commits are used to generate release notes: + +## v16.1.1 (2023-08-28) + +- [Bugfix] Add `INFO_EMAIL` and `PASSWORD_RESET_SUPPORT_LINK` missing variables defaults of `CONTACT_EMAIL` and `mailto:{{ CONTACT_EMAIL }}` respectfully. These two variables help build the "Forgot Password" screen. (by @misilot) +- [Bugfix] Corrected typo error in `PROFILE_MICROFRONTEND_URL` of development env settings. (by @kiran1415) + ## v16.1.0 (2023-08-03) diff --git a/changelog.d/20230815_205312_tmisilo_fix_issue_139.md b/changelog.d/20230815_205312_tmisilo_fix_issue_139.md deleted file mode 100644 index fe1a238c..00000000 --- a/changelog.d/20230815_205312_tmisilo_fix_issue_139.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Add `INFO_EMAIL` and `PASSWORD_RESET_SUPPORT_LINK` missing variables defaults of `CONTACT_EMAIL` and `mailto:{{ CONTACT_EMAIL }}` respectfully. These two variables help build the Forgot Password screen. (by @misilot) --> diff --git a/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md b/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md deleted file mode 100644 index dd07b777..00000000 --- a/changelog.d/20230819_190050_kiran.767.767_settings_typo_fix.md +++ /dev/null @@ -1 +0,0 @@ -[Bugfix] Corrected typo error in PROFILE_MICROFRONTEND_URL of development env settings (by @kiran1415) diff --git a/tutormfe/__about__.py b/tutormfe/__about__.py index e47f0ae3..45483a69 100644 --- a/tutormfe/__about__.py +++ b/tutormfe/__about__.py @@ -1,4 +1,4 @@ -__version__ = "16.1.0" +__version__ = "16.1.1" __package_version__ = __version__