Browse Source

Release v0.10.1

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

+ 7
- 6
CHANGELOG.md View File

@@ -4,20 +4,21 @@ 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!
7
+## [0.10.1] - 2017-11-09
8
+This patch release of Oragono fixes a fairly big channel mode bug, where users could set channel modes when they weren't actually allowed to.
9 9
 
10 10
 ### Config Changes
11
+* `recover-from-errors` key added under `debug`, which enables recovery from client-caused errors (at the cost of possible server instability).
11 12
 
12 13
 ### Security
14
+* Clients could set channel modes when they weren't supposed to be able to.
13 15
 
14 16
 ### Added
15
-
16
-### Changed
17
-
18
-### Removed
17
+* We now allow recovering from client-caused panics.
19 18
 
20 19
 ### Fixed
20
+* `SAMODE` now lists other users' modes.
21
+* Removed some possible crashes and races.
21 22
 
22 23
 
23 24
 ## [0.10.0] - 2017-10-23

+ 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.10.1-unreleased"
12
+	SemVer = "0.10.1"
13 13
 )
14 14
 
15 15
 var (

Loading…
Cancel
Save