From f258d08bac1d65ebc26359a982ac8b68fe207164 Mon Sep 17 00:00:00 2001
From: Asterisk Development Team <asteriskteam@digium.com>
Date: Thu, 18 Jan 2024 16:45:07 +0000
Subject: [PATCH] Update for 20.6.0-rc2

---
 .version                           |  2 +-
 CHANGES.md                         |  2 +-
 ChangeLogs/ChangeLog-20.6.0-rc2.md | 62 ++++++++++++++++++++++++++++++
 3 files changed, 64 insertions(+), 2 deletions(-)
 create mode 100644 ChangeLogs/ChangeLog-20.6.0-rc2.md

diff --git a/.version b/.version
index bc4a3a6276..2aaf9375de 100644
--- a/.version
+++ b/.version
@@ -1 +1 @@
-20.6.0-rc1
+20.6.0-rc2
diff --git a/CHANGES.md b/CHANGES.md
index be7eb89a30..bd9768847c 120000
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1 +1 @@
-ChangeLogs/ChangeLog-20.6.0-rc1.md
\ No newline at end of file
+ChangeLogs/ChangeLog-20.6.0-rc2.md
\ No newline at end of file
diff --git a/ChangeLogs/ChangeLog-20.6.0-rc2.md b/ChangeLogs/ChangeLog-20.6.0-rc2.md
new file mode 100644
index 0000000000..7b39b880fc
--- /dev/null
+++ b/ChangeLogs/ChangeLog-20.6.0-rc2.md
@@ -0,0 +1,62 @@
+
+Change Log for Release asterisk-20.6.0-rc2
+========================================
+
+Links:
+----------------------------------------
+
+ - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.6.0-rc2.md)  
+ - [GitHub Diff](https://github.com/asterisk/asterisk/compare/20.6.0-rc1...20.6.0-rc2)  
+ - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.6.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
+
-- 
GitLab