diff --git a/CHANGELOG.md b/CHANGELOG.md index da25af00..945fc280 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,15 @@ instructions, because git commits are used to generate release notes: + +## v19.0.0 (2024-10-21) + +- 💥[Feature] Rename course-authoring MFE to "authoring". Existing URLs are redirected for backward compatibility. (by @regisb) + +- [Feature] Upgrade to Node 20. (by @arbrandes) + +- 💥[Feature] Upgrade to Sumac (by @hinakhadim) + ## v18.0.1 (2024-09-09) diff --git a/changelog.d/20240920_143739_regis_authoring_rename.md b/changelog.d/20240920_143739_regis_authoring_rename.md deleted file mode 100644 index 377e5242..00000000 --- a/changelog.d/20240920_143739_regis_authoring_rename.md +++ /dev/null @@ -1 +0,0 @@ -- 💥[Feature] Rename course-authoring MFE to "authoring". Existing URLs are redirected for backward compatibility. (by @regisb) diff --git a/changelog.d/20241010_090821_arbrandes_node_20_upgrade.md b/changelog.d/20241010_090821_arbrandes_node_20_upgrade.md deleted file mode 100644 index 17ea5056..00000000 --- a/changelog.d/20241010_090821_arbrandes_node_20_upgrade.md +++ /dev/null @@ -1,2 +0,0 @@ - -- [Feature] Upgrade to Node 20. (by @arbrandes) diff --git a/setup.py b/setup.py index ae7f548a..a6043824 100644 --- a/setup.py +++ b/setup.py @@ -40,8 +40,8 @@ def load_about(): packages=find_packages(exclude=["tests*"]), include_package_data=True, python_requires=">=3.8", - install_requires=["tutor>=18.0.0,<19.0.0"], - extras_require={"dev": ["tutor[dev]>=18.0.0,<19.0.0"]}, + install_requires=["tutor>=19.0.0,<20.0.0"], + extras_require={"dev": ["tutor[dev]>=19.0.0,<20.0.0"]}, entry_points={"tutor.plugin.v1": ["mfe = tutormfe.plugin"]}, classifiers=[ "Development Status :: 5 - Production/Stable", diff --git a/tutormfe/__about__.py b/tutormfe/__about__.py index 28cc1491..0122a6fa 100644 --- a/tutormfe/__about__.py +++ b/tutormfe/__about__.py @@ -1 +1 @@ -__version__ = "18.0.1" +__version__ = "19.0.0"