diff --git a/CHANGELOG.md b/CHANGELOG.md index ad0be3d..35d1a2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,12 @@ instructions, because git commits are used to generate release notes: + +## v16.1.4 (2023-10-13) + +- [Improvement] No more large dev images. This was fixed by adding `--no-log-init` option to useradd command and reducing space usage of `/var/log/faillog`. (by @CodeWithEmad) +- [Improvement] Upgrade the Open edX default version to open-release/palm.3. (by @regisb) + ## v16.1.3 (2023-10-10) diff --git a/changelog.d/20231011_005657_codewithemad_large_dev_image.md b/changelog.d/20231011_005657_codewithemad_large_dev_image.md deleted file mode 100644 index efb1fd6..0000000 --- a/changelog.d/20231011_005657_codewithemad_large_dev_image.md +++ /dev/null @@ -1 +0,0 @@ -- [Improvement] No more large dev images. This was fixed by adding --no-log-init option to useradd command and reducing space usage of /var/log/faillog. (by @CodeWithEmad) \ No newline at end of file diff --git a/changelog.d/20231013_164741_regis_palm_3.md b/changelog.d/20231013_164741_regis_palm_3.md deleted file mode 100644 index ab184b4..0000000 --- a/changelog.d/20231013_164741_regis_palm_3.md +++ /dev/null @@ -1 +0,0 @@ -- [Improvement] Upgrade the Open edX default version to open-release/palm.3. (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index 004ee58..b3d3260 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__ = "16.1.3" +__version__ = "16.1.4" # 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