diff --git a/CHANGELOG.md b/CHANGELOG.md
index d3e1f9e..2538528 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,17 @@ instructions, because git commits are used to generate release notes:
+
+## v19.0.0 (2024-10-23)
+
+- 💥[Feature] Upgrade to Sumac. (by @Faraz32123)
+- [BugFix] Uwsgi workers wasn't starting properly using `UWSGI_WORKERS` flag, passing the value directly fixes the issue. (by @Faraz32123)
+- 💥[Feature] Update Credentials Image to use Ubuntu `24.04` as base OS. (by @Faraz32123)
+ - Add `mime-support` alternatives that are `media-types mailcap`.
+ - Update `python-openssl` to `python3-openssl`.
+- [Bugfix] Fix legacy warnings during Docker build. (by @regisb)
+
+
## v18.0.0 (2024-06-07)
diff --git a/changelog.d/20240621_170044_regis.md b/changelog.d/20240621_170044_regis.md
deleted file mode 100644
index d7d2eb7..0000000
--- 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/20241010_175810_faraz.maqsood_ubuntu_upgrade.md b/changelog.d/20241010_175810_faraz.maqsood_ubuntu_upgrade.md
deleted file mode 100644
index 3c522cc..0000000
--- a/changelog.d/20241010_175810_faraz.maqsood_ubuntu_upgrade.md
+++ /dev/null
@@ -1,3 +0,0 @@
-- 💥[Feature] Update Credentials Image to use Ubuntu `24.04` as base OS. (by @Faraz32123)
- - Add `mime-support` alternatives that are `media-types mailcap`.
- - Update `python-openssl` to `python3-openssl`.
\ No newline at end of file
diff --git a/changelog.d/20241022_194734_faraz.maqsood_uwsgi_workers_not_starting_properly.md b/changelog.d/20241022_194734_faraz.maqsood_uwsgi_workers_not_starting_properly.md
deleted file mode 100644
index c5101ae..0000000
--- a/changelog.d/20241022_194734_faraz.maqsood_uwsgi_workers_not_starting_properly.md
+++ /dev/null
@@ -1 +0,0 @@
-- [BugFix] Uwsgi workers wasn't starting properly using `UWSGI_WORKERS` flag, passing the value directly fixes the issue. (by @Faraz32123)
diff --git a/setup.py b/setup.py
index d69af93..c417be2 100644
--- a/setup.py
+++ b/setup.py
@@ -44,8 +44,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", "tutor-discovery>=18.0.0,<19.0.0", "tutor-mfe>=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", "tutor-discovery>=19.0.0,<20.0.0", "tutor-mfe>=19.0.0,<20.0.0"],
+ extras_require={"dev": ["tutor[dev]>=19.0.0,<20.0.0"]},
entry_points={"tutor.plugin.v1": ["credentials = tutorcredentials.plugin"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
diff --git a/tutorcredentials/__about__.py b/tutorcredentials/__about__.py
index c6a8b8e..0122a6f 100644
--- a/tutorcredentials/__about__.py
+++ b/tutorcredentials/__about__.py
@@ -1 +1 @@
-__version__ = "18.0.0"
+__version__ = "19.0.0"