Browse Source

Release v0.10.0

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

+ 6
- 2
CHANGELOG.md View File

@@ -4,8 +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.0] - 2017-10-23
8
+There has been a bunch of new changes in this release! From [`sts`](http://ircv3.net/specs/extensions/sts.html) being ratified to supporting [`WEBIRC`](ircv3.net/specs/extensions/webirc.html) to rewriting a whole lot of our internals, 0.10.0 represents a real step forward in terms of where Oragono's going.
9
+
10
+In addition to the new features, this issue fixes a bunch of fairly large bugs (such as an errant `INVITE` being able to crash the server, the `+mR`channel modes not working at all, and making rehashing safer).
11
+
12
+I'd like to thank @slingamn for really contributing a lot in this release! He's done a whole bunch of the internal work, cleaned up the code, and in general just been a great help while developing. Running Oragono on an actual network has really helped find and track down some serious bugs, and lead us to some much-needed improvements.
9 13
 
10 14
 ### Config Changes
11 15
 * `motd-formatting` key added under `server`, which supports MOTD formatting characters.

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

Loading…
Cancel
Save