Browse Source

Release v0.9.1

tags/v0.9.1^0
Daniel Oaks 6 years ago
parent
commit
eae04e8c51
2 changed files with 8 additions and 9 deletions
  1. 7
    8
      CHANGELOG.md
  2. 1
    1
      irc/constants.go

+ 7
- 8
CHANGELOG.md View File

@@ -4,20 +4,19 @@ All notable changes to Oragono will be documented in this file.
4 4
 This project adheres to [Semantic Versioning](http://semver.org/). For the purposes of versioning, we consider the "public API" to refer to the configuration files, CLI interface and database format.
5 5
 
6 6
 
7
-## Unreleased
8
-New release of Oragono!
9
-
10
-### Config Changes
11
-
12
-### Security
7
+## [0.9.1] - 2017-09-28
8
+This is a patch release to fix compatibility with Irssi and resolve some issues! Thanks very much @dequis, @slingamn and squigz for the help and for bringing up the issues.
13 9
 
14 10
 ### Added
11
+* Allow the `MODE b` syntax, which certain clients use to check lists.
15 12
 
16 13
 ### Changed
17
-
18
-### Removed
14
+* `QUIT`: We now send the actual quit message to other users.
19 15
 
20 16
 ### Fixed
17
+* Fix incorrectly forwarding `AWAY` messages to clients without `away-notify`.
18
+* Fix incorrect login check which prevented account registration.
19
+* Fix `ERR_NOSUCHNICK` numerics (we weren't sending the nick correctly).
21 20
 
22 21
 
23 22
 ## [0.9.0] - 2017-09-25

+ 1
- 1
irc/constants.go View File

@@ -9,7 +9,7 @@ import "fmt"
9 9
 
10 10
 const (
11 11
 	// SemVer is the semantic version of Oragono.
12
-	SemVer = "0.9.1-unreleased"
12
+	SemVer = "0.9.1"
13 13
 )
14 14
 
15 15
 var (

Loading…
Cancel
Save