From fda86a1521e6a5af3e72736246cd221d7d0716eb Mon Sep 17 00:00:00 2001
From: Randy Sommerfeld <cyan@synchro.net>
Date: Sun, 10 Dec 2023 08:38:05 +0700
Subject: [PATCH] IRCd 2.0 RC

---
 exec/ircd.js           | 2 +-
 exec/load/ircd/core.js | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/exec/ircd.js b/exec/ircd.js
index 39650ed466..3722624df0 100644
--- a/exec/ircd.js
+++ b/exec/ircd.js
@@ -37,7 +37,7 @@ load("ircd/server.js");
 load("ircd/config.js");
 
 /*** Global Constants - Always in ALL_UPPERCASE ***/
-const VERSION = "SynchronetIRCd-1.10";
+const VERSION = "SynchronetIRCd-2.0";
 const VERSION_STR = format(
 	"Synchronet %s%s-%s%s (IRCd by Randy Sommerfeld)",
 	system.version, system.revision,
diff --git a/exec/load/ircd/core.js b/exec/load/ircd/core.js
index f717c3fa65..4b8c12a898 100644
--- a/exec/load/ircd/core.js
+++ b/exec/load/ircd/core.js
@@ -1325,7 +1325,7 @@ function IRCClient_do_info() {
 		this.hostname,
 		this.servername
 	));
-	this.numeric(371, ":--=-=-=-=-=-=-=-=-=-=-*[ The Synchronet IRCd 1.10 ]*=-=-=-=-=-=-=-=-=-=--");
+	this.numeric(371, ":--=-=-=-=-=-=-=-=-=-=-*[ The Synchronet IRCd 2.0 ]*-=-=-=-=-=-=-=-=-=-=--");
 	this.numeric(371, ":   IRCd Copyright 2003-2023 by Randy Sommerfeld <cyan@synchro.net>");
 	this.numeric(371, ":" + system.version_notice + " " + system.copyright + ".");
 	this.numeric(371, ":--=-=-=-=-=-=-=-=-=-( A big thanks to the following )-=-=-=-=-=-=-=-=-=--");
-- 
GitLab