diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a4d68e6..40133af3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,16 @@ instructions, because git commits are used to generate release notes: + +## v18.0.1 (2024-12-12) + +- [Bugfix] Fix legacy warnings during Docker build. (by @regisb) +- [Bugfix] Fix ecommerce image build, which was failing because of a missing pkg-config apt package. (by @regisb) +- 💥 [Deprecation] Drop support for python 3.8 and set Python 3.9 as the minimum supported python version. (by @Faraz32123) +- 💥[Improvement] Rename Tutor's two branches (by @DawoudSheraz): + * Rename **master** to **release**, as this branch runs the latest official Open edX release tag. + * Rename **nightly** to **main**, as this branch runs the Open edX master branches, which are the basis for the next Open edX release. + ## v18.0.0 (2024-05-15) diff --git a/changelog.d/20240621_170044_regis.md b/changelog.d/20240621_170044_regis.md deleted file mode 100644 index d7d2eb72..00000000 --- a/changelog.d/20240621_170044_regis.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix legacy warnings during Docker build. (by @regisb) diff --git a/changelog.d/20240621_175315_regis_nightly.md b/changelog.d/20240621_175315_regis_nightly.md deleted file mode 100644 index e977836a..00000000 --- a/changelog.d/20240621_175315_regis_nightly.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix ecommerce image build, which was failing because of a missing pkg-config apt package. (by @regisb) diff --git a/changelog.d/20241111_173552_faraz.maqsood_remove_py38_references.md b/changelog.d/20241111_173552_faraz.maqsood_remove_py38_references.md deleted file mode 100644 index 8b70c7b5..00000000 --- a/changelog.d/20241111_173552_faraz.maqsood_remove_py38_references.md +++ /dev/null @@ -1 +0,0 @@ -- 💥 [Deprecation] Drop support for python 3.8 and set Python 3.9 as the minimum supported python version. (by @Faraz32123) diff --git a/changelog.d/20241119_123631_dawoud.sheraz_branch_rename.md b/changelog.d/20241119_123631_dawoud.sheraz_branch_rename.md deleted file mode 100644 index fb6e264c..00000000 --- a/changelog.d/20241119_123631_dawoud.sheraz_branch_rename.md +++ /dev/null @@ -1,3 +0,0 @@ -- 💥[Improvement] Rename Tutor's two branches (by @DawoudSheraz): - * Rename **master** to **release**, as this branch runs the latest official Open edX release tag. - * Rename **nightly** to **main**, as this branch runs the Open edX master branches, which are the basis for the next Open edX release. \ No newline at end of file diff --git a/tutorecommerce/__about__.py b/tutorecommerce/__about__.py index c6a8b8ed..28cc1491 100644 --- a/tutorecommerce/__about__.py +++ b/tutorecommerce/__about__.py @@ -1 +1 @@ -__version__ = "18.0.0" +__version__ = "18.0.1"