Browse Source

Merge pull request #2022 from slingamn/changelog

final updates for v2.11.0-rc1
tags/v2.11.0^0
Shivaram Lingamneni 1 year ago
parent
commit
1e1acdae21
No account linked to committer's email address
2 changed files with 5 additions and 4 deletions
  1. 4
    3
      CHANGELOG.md
  2. 1
    1
      irc/version.go

+ 4
- 3
CHANGELOG.md View File

@@ -1,13 +1,13 @@
1 1
 # Changelog
2 2
 All notable changes to Ergo will be documented in this file.
3 3
 
4
-## [2.11.0-rc1] - 2022-12-18
4
+## [2.11.0] - 2022-12-25
5 5
 
6
-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.
6
+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.
7 7
 
8 8
 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.
9 9
 
10
-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.
10
+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.
11 11
 
12 12
 ### Config changes
13 13
 
@@ -29,6 +29,7 @@ Many thanks to dedekro, [@emersion](https://github.com/emersion), [@eskimo](http
29 29
 * Fixed handling of the address `::1` in WHOX output (#1980, thanks knolle!)
30 30
 * 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)!)
31 31
 * Fixed incorrect handling of some invalid modes in `CS AMODE` (#2002, thanks [@eskimo](https://github.com/eskimo)!)
32
+* Fixed incorrect help text for `NS SAVERIFY` (#2021, thanks [@FiskFan1999](https://github.com/FiskFan1999)!)
32 33
 
33 34
 ### Added
34 35
 

+ 1
- 1
irc/version.go View File

@@ -7,7 +7,7 @@ import "fmt"
7 7
 
8 8
 const (
9 9
 	// SemVer is the semantic version of Ergo.
10
-	SemVer = "2.11.0-rc1"
10
+	SemVer = "2.11.0"
11 11
 )
12 12
 
13 13
 var (

Loading…
Cancel
Save