diff --git a/CHANGELOG.md b/CHANGELOG.md index cc9a400..99a431f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,11 @@ Every user-facing change should have an entry in this changelog. Please respect ## Unreleased +## v14.0.5 (2022-08-29) + +- [Bugfix] Fix MongoDB replica set connection error resulting from edx-platform's pymongo (3.10.1 -> 3.12.3) upgrade ([edx-platform#30569](https://github.com/openedx/edx-platform/pull/30569)). (by @ormsbee) +- [Feature] Upgrade all applications to open-release/nutmeg.2 (@BbrSofiane). + ## v14.0.4 (2022-07-29) - [Feature] Add the `-m/--mount` option to `tutor dev quickstart`. diff --git a/tutor/__about__.py b/tutor/__about__.py index a2cc914..e17ebfb 100644 --- a/tutor/__about__.py +++ b/tutor/__about__.py @@ -2,7 +2,7 @@ import os # Increment this version number to trigger a new release. See # docs/tutor.html#versioning for information on the versioning scheme. -__version__ = "14.0.4" +__version__ = "14.0.5" # The version suffix will be appended to the actual version, separated by a # dash. Use this suffix to differentiate between the actual released version and