diff --git a/src/mail/CHANGELOG.md b/src/mail/CHANGELOG.md
index 9a57eb4d..37396a18 100644
--- a/src/mail/CHANGELOG.md
+++ b/src/mail/CHANGELOG.md
@@ -6,6 +6,20 @@ and this project uses date-based versioning.
+
+## [2024.11.5] - 2024-11-05
+
+### Changed
+
+- Updated changelog management and versioning scheme.
+
+- Updated requirements and lockfiles to support Django 4.
+- Removed support for Django 2.2.
+
+- Added posthog application.
+
+- Update paths in pyproject.toml to ensure versioning continues to work.
+
## [2023.12.19] - 2023-12-19
diff --git a/src/mail/changelog.d/20230222_204146_rhysyngsun_use_scriv_2.md b/src/mail/changelog.d/20230222_204146_rhysyngsun_use_scriv_2.md
deleted file mode 100644
index caf7984a..00000000
--- a/src/mail/changelog.d/20230222_204146_rhysyngsun_use_scriv_2.md
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-### Changed
-
-- Updated changelog management and versioning scheme.
-
-
-
-
diff --git a/src/mail/changelog.d/20231218_212732_jkachel_support_django_4.md b/src/mail/changelog.d/20231218_212732_jkachel_support_django_4.md
deleted file mode 100644
index b5df4e09..00000000
--- a/src/mail/changelog.d/20231218_212732_jkachel_support_django_4.md
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-### Changed
-
-- Updated requirements and lockfiles to support Django 4.
-- Removed support for Django 2.2.
-
-
-
-
diff --git a/src/mail/changelog.d/20240423_165830_collin_preston_2116_improve_resilience_of_posthog_integration_1.md b/src/mail/changelog.d/20240423_165830_collin_preston_2116_improve_resilience_of_posthog_integration_1.md
deleted file mode 100644
index addf6363..00000000
--- a/src/mail/changelog.d/20240423_165830_collin_preston_2116_improve_resilience_of_posthog_integration_1.md
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-### Changed
-
-- Added posthog application.
-
-
-
diff --git a/src/mail/changelog.d/20241024_173306_jkachel_update_pyprojects.md b/src/mail/changelog.d/20241024_173306_jkachel_update_pyprojects.md
deleted file mode 100644
index a5e11109..00000000
--- a/src/mail/changelog.d/20241024_173306_jkachel_update_pyprojects.md
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-### Changed
-
-- Update paths in pyproject.toml to ensure versioning continues to work.
-
-
-
-
diff --git a/src/mail/mitol/mail/__init__.py b/src/mail/mitol/mail/__init__.py
index 11ce2ee4..9dc6efa0 100644
--- a/src/mail/mitol/mail/__init__.py
+++ b/src/mail/mitol/mail/__init__.py
@@ -2,5 +2,5 @@
default_app_config = "mitol.mail.apps.MailApp"
-__version__ = "2023.12.19"
+__version__ = "2024.11.5"
__distributionname__ = "mitol-django-mail"
diff --git a/src/mail/pyproject.toml b/src/mail/pyproject.toml
index 11e06457..744ced70 100644
--- a/src/mail/pyproject.toml
+++ b/src/mail/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "mitol-django-mail"
-version = "2023.12.19"
+version = "2024.11.5"
description = "MIT Open Learning django app extensions for mail"
dependencies = [
"beautifulsoup4>=4.6.0",
@@ -17,7 +17,7 @@ license = "BSD-3-Clause"
requires-python = ">=3.8"
[tool.bumpver]
-current_version = "2023.12.19"
+current_version = "2024.11.5"
version_pattern = "YYYY.MM.DD[.INC0]"
[tool.bumpver.file_patterns]