Browse Source

Release v0.10.3

tags/v0.10.3^0
Daniel Oaks 6 years ago
parent
commit
5e9f0fd411
2 changed files with 5 additions and 7 deletions
  1. 4
    6
      CHANGELOG.md
  2. 1
    1
      irc/constants.go

+ 4
- 6
CHANGELOG.md View File

@@ -4,12 +4,12 @@ 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.3] - 2017-12-26
8
+This patch fixes a couple bugs, updates cap/isupport token names in response to spec changes, and allows unprivileged users to list channel bans. Ah, DLINE and KLINE also store oper names, so you can see who set those pesky bans later on!
9 9
 
10
-### Config Changes
10
+Overall, a fairly standard patch that just improves things. No config changes, no database changes.
11 11
 
12
-### Security
12
+Also, Merry Christmas and Happy Holidays!
13 13
 
14 14
 ### Added
15 15
 * `DLINE`/`KLINE`: We now save the name of whichever oper set the ban (and display it later).
@@ -20,8 +20,6 @@ New release of Oragono!
20 20
 * Casemapping is now advertised using the `UTF8MAPPING` token, matching the new spec changes.
21 21
 * We now allow unprivileged users to list channel bans.
22 22
 
23
-### Removed
24
-
25 23
 ### Fixed
26 24
 * Fixed a bug around removing channel bans.
27 25
 * Fixed a client timeout bug.

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

Loading…
Cancel
Save