From 23ba58b327cc7b3d2c3c78e0c16ddb712d7a2620 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Sun, 25 Dec 2022 02:09:33 -0500 Subject: [PATCH 1/2] final changelog for v2.11.0 --- CHANGELOG.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e920849d..228da6c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,13 @@ # Changelog All notable changes to Ergo will be documented in this file. -## [2.11.0-rc1] - 2022-12-18 +## [2.11.0] - 2022-12-25 -We're pleased to be publishing the release candidate for 2.11.0 (the official release should follow in a week or so). This is another bugfix release aimed at improving client compatibility and keeping up with the IRCv3 specification process. +We're pleased to be publishing v2.11.0, a new stable release. This is another bugfix release aimed at improving client compatibility and keeping up with the IRCv3 specification process. This release includes changes to the config file format, all of which are fully backwards-compatible and do not require updating the file before upgrading. It includes no changes to the database file format. -Many thanks to dedekro, [@emersion](https://github.com/emersion), [@eskimo](https://github.com/eskimo), hauser, [@jwheare](https://github.com/jwheare), [@kingter-sutjiadi](https://github.com/kingter-sutjiadi), knolle, [@Mikaela](https://github.com/Mikaela), [@mogad0n](https://github.com/mogad0n), [@PeGaSuS-Coder](https://github.com/PeGaSuS-Coder), and [@progval](https://github.com/progval) for contributing patches, reporting issues, and helping test. +Many thanks to dedekro, [@emersion](https://github.com/emersion), [@eskimo](https://github.com/eskimo), [@FiskFan1999](https://github.com/FiskFan1999), hauser, [@jwheare](https://github.com/jwheare), [@kingter-sutjiadi](https://github.com/kingter-sutjiadi), knolle, [@Mikaela](https://github.com/Mikaela), [@mogad0n](https://github.com/mogad0n), [@PeGaSuS-Coder](https://github.com/PeGaSuS-Coder), and [@progval](https://github.com/progval) for contributing patches, reporting issues, and helping test. ### Config changes @@ -29,6 +29,7 @@ Many thanks to dedekro, [@emersion](https://github.com/emersion), [@eskimo](http * Fixed handling of the address `::1` in WHOX output (#1980, thanks knolle!) * Fixed handling of `AWAY` with an empty parameter (the de facto standard is to treat as a synonym for no parameter, which means "back") (#1996, thanks [@emersion](https://github.com/emersion), [@jwheare](https://github.com/jwheare)!) * Fixed incorrect handling of some invalid modes in `CS AMODE` (#2002, thanks [@eskimo](https://github.com/eskimo)!) +* Fixed incorrect help text for `NS SAVERIFY` (#2021, thanks [@FiskFan1999](https://github.com/FiskFan1999)!) ### Added From df8eef5b0ac642ffcb8c4944c8a9fb6c8d5c0829 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Sun, 25 Dec 2022 02:09:49 -0500 Subject: [PATCH 2/2] bump version for stable release --- irc/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/version.go b/irc/version.go index 27202bd7..8f92a7c6 100644 --- a/irc/version.go +++ b/irc/version.go @@ -7,7 +7,7 @@ import "fmt" const ( // SemVer is the semantic version of Ergo. - SemVer = "2.11.0-rc1" + SemVer = "2.11.0" ) var (