diff --git a/CHANGELOG.md b/CHANGELOG.md
index f3103ed..f981b76 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,14 @@ instructions, because git commits are used to generate release notes:
+
+## v18.0.0 (2024-06-20)
+
+- 💥[Feature] Upgrade to Redwood (by @Fahadkhalid210)
+- [Bugfix] Make plugin compatible with Python 3.12 by removing dependency on `pkg_resources`. (by @regisb)
+- [Bugfix] Fix a 500 error on downloading profile information as CSV when the minio plugin is enabled. (by @FahadKhalid210)
+- [Feature] add separated grades bucket and manage querystring by config variable. (by @henrrypg)
+
## v17.0.0 (2023-12-09)
diff --git a/changelog.d/20240212_115536_regis_pkg_resources.md b/changelog.d/20240212_115536_regis_pkg_resources.md
deleted file mode 100644
index 35b6d20..0000000
--- a/changelog.d/20240212_115536_regis_pkg_resources.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Bugfix] Make plugin compatible with Python 3.12 by removing dependency on `pkg_resources`. (by @regisb)
diff --git a/changelog.d/20240212_150340_fahad.khalid.md b/changelog.d/20240212_150340_fahad.khalid.md
deleted file mode 100644
index d960d63..0000000
--- a/changelog.d/20240212_150340_fahad.khalid.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Bugfix] Fix a 500 error on downloading profile information as CSV when the minio plugin is enabled. (by @FahadKhalid210)
diff --git a/changelog.d/20240221_092010_henrry.pulgarin_add_grades_and_privacy.md b/changelog.d/20240221_092010_henrry.pulgarin_add_grades_and_privacy.md
deleted file mode 100644
index 10e9a4b..0000000
--- a/changelog.d/20240221_092010_henrry.pulgarin_add_grades_and_privacy.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Feature] add separated grades bucket and manage querystring by config variable. (by @henrrypg)
diff --git a/setup.py b/setup.py
index 99f3f68..1112d19 100644
--- a/setup.py
+++ b/setup.py
@@ -33,8 +33,8 @@
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.8",
- install_requires=["tutor>=17.0.0,<18.0.0"],
- extras_require={"dev": "tutor[dev]>=17.0.0,<18.0.0"},
+ install_requires=["tutor>=18.0.0,<19.0.0"],
+ extras_require={"dev": "tutor[dev]>=18.0.0,<19.0.0"},
entry_points={"tutor.plugin.v1": ["minio = tutorminio.plugin"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
diff --git a/tutorminio/__about__.py b/tutorminio/__about__.py
index a08b09c..c6a8b8e 100644
--- a/tutorminio/__about__.py
+++ b/tutorminio/__about__.py
@@ -1 +1 @@
-__version__ = "17.0.0"
+__version__ = "18.0.0"