diff --git a/.version b/.version
index 84add37945ecc6ab8a8340788eb8221b92a19054..2410d9fa8c13515340ebe502bc356b1e42e9dff5 100644
--- a/.version
+++ b/.version
@@ -1 +1 @@
-18.21.0-rc2
+18.21.0
diff --git a/CHANGES.md b/CHANGES.md
index 622bcd5c4304ff98445383380d93a759957be04a..7df11efb2648631ab3993ff571eeca1c178374cb 120000
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1 +1 @@
-ChangeLogs/ChangeLog-18.21.0-rc2.md
\ No newline at end of file
+ChangeLogs/ChangeLog-18.21.0.md
\ No newline at end of file
diff --git a/ChangeLogs/ChangeLog-18.21.0-rc2.md b/ChangeLogs/ChangeLog-18.21.0-rc2.md
deleted file mode 100644
index 5fd3766b8ed209aa4b688c8a6cc2140aec4f6d97..0000000000000000000000000000000000000000
--- a/ChangeLogs/ChangeLog-18.21.0-rc2.md
+++ /dev/null
@@ -1,62 +0,0 @@
-
-Change Log for Release asterisk-18.21.0-rc2
-========================================
-
-Links:
-----------------------------------------
-
- - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-18.21.0-rc2.md)  
- - [GitHub Diff](https://github.com/asterisk/asterisk/compare/18.21.0-rc1...18.21.0-rc2)  
- - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-18.21.0-rc2.tar.gz)  
- - [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk)  
-
-Summary:
-----------------------------------------
-
-- logger: Fix linking regression.
-
-User Notes:
-----------------------------------------
-
-
-Upgrade Notes:
-----------------------------------------
-
-
-Closed Issues:
-----------------------------------------
-
-  - #539: [bug]: Existence of logger.xml causes linking failure
-
-Commits By Author:
-----------------------------------------
-
-- ### Naveen Albert (1):
-  - logger: Fix linking regression.
-
-
-Detail:
-----------------------------------------
-
-- ### logger: Fix linking regression.
-  Author: Naveen Albert  
-  Date:   2024-01-16  
-
-  Commit 008731b0a4b96c4e6c340fff738cc12364985b64
-  caused a regression by resulting in logger.xml
-  being compiled and linked into the asterisk
-  binary in lieu of logger.c on certain platforms
-  if Asterisk was compiled in dev mode.
-
-  To fix this, we ensure the file has a unique
-  name without the extension. Most existing .xml
-  files have been named differently from any
-  .c files in the same directory or did not
-  pose this issue.
-
-  channels/pjsip/dialplan_functions.xml does not
-  pose this issue but is also being renamed
-  to adhere to this policy.
-
-  Resolves: #539
-
diff --git a/ChangeLogs/ChangeLog-18.21.0-rc1.md b/ChangeLogs/ChangeLog-18.21.0.md
similarity index 98%
rename from ChangeLogs/ChangeLog-18.21.0-rc1.md
rename to ChangeLogs/ChangeLog-18.21.0.md
index 0aa0925cacbd45d33ac29f3e4a2d08f886b8572e..06a7224c3164c6133100f05fa93f4ba5fc4c6941 100644
--- a/ChangeLogs/ChangeLog-18.21.0-rc1.md
+++ b/ChangeLogs/ChangeLog-18.21.0.md
@@ -1,18 +1,19 @@
 
-Change Log for Release asterisk-18.21.0-rc1
+Change Log for Release asterisk-18.21.0
 ========================================
 
 Links:
 ----------------------------------------
 
- - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-18.21.0-rc1.md)  
- - [GitHub Diff](https://github.com/asterisk/asterisk/compare/18.20.2...18.21.0-rc1)  
- - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-18.21.0-rc1.tar.gz)  
+ - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-18.21.0.md)  
+ - [GitHub Diff](https://github.com/asterisk/asterisk/compare/18.20.2...18.21.0)  
+ - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-18.21.0.tar.gz)  
  - [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk)  
 
 Summary:
 ----------------------------------------
 
+- logger: Fix linking regression.
 - Revert "core & res_pjsip: Improve topology change handling."
 - menuselect: Use more specific error message.
 - res_pjsip_nat: Fix potential use of uninitialized transport details
@@ -259,10 +260,15 @@ Closed Issues:
   - #513: [bug]: manager.c: Crash due to regression using wrong free function when built with MALLOC_DEBUG
   - #520: [improvement]: menuselect: Use more specific error message.
   - #530: [bug]: bridge_channel.c: Stream topology change amplification with multiple layers of Local channels
+  - #539: [bug]: Existence of logger.xml causes linking failure
 
 Commits By Author:
 ----------------------------------------
 
+- ### Asterisk Development Team (2):
+  - Update for 18.21.0-rc1
+  - Update for 18.21.0-rc2
+
 - ### Bastian Triller (1):
   - func_json: Fix crashes for some types
 
@@ -330,7 +336,7 @@ Commits By Author:
   - res_stasis: signal when new command is queued
   - res_speech: allow speech to translate input channel
 
-- ### Naveen Albert (20):
+- ### Naveen Albert (21):
   - chan_iax2: Improve authentication debugging.
   - chan_console: Fix deadlock caused by unclean thread exit.
   - app_voicemail: Disable ADSI if unavailable.
@@ -351,6 +357,7 @@ Commits By Author:
   - manager.c: Fix regression due to using wrong free function.
   - app_if: Fix faulty EndIf branching.
   - menuselect: Use more specific error message.
+  - logger: Fix linking regression.
 
 - ### Samuel Olaechea (1):
   - configs: Fix typo in pjsip.conf.sample.
@@ -393,6 +400,28 @@ Commits By Author:
 Detail:
 ----------------------------------------
 
+- ### logger: Fix linking regression.
+  Author: Naveen Albert  
+  Date:   2024-01-16  
+
+  Commit 008731b0a4b96c4e6c340fff738cc12364985b64
+  caused a regression by resulting in logger.xml
+  being compiled and linked into the asterisk
+  binary in lieu of logger.c on certain platforms
+  if Asterisk was compiled in dev mode.
+
+  To fix this, we ensure the file has a unique
+  name without the extension. Most existing .xml
+  files have been named differently from any
+  .c files in the same directory or did not
+  pose this issue.
+
+  channels/pjsip/dialplan_functions.xml does not
+  pose this issue but is also being renamed
+  to adhere to this policy.
+
+  Resolves: #539
+
 - ### Revert "core & res_pjsip: Improve topology change handling."
   Author: George Joseph  
   Date:   2024-01-12