Browse Source

Release v0.12.0

tags/v0.12.0^0
Daniel Oaks 5 years ago
parent
commit
55503961cb
2 changed files with 11 additions and 3 deletions
  1. 10
    2
      CHANGELOG.md
  2. 1
    1
      irc/constants.go

+ 10
- 2
CHANGELOG.md View File

@@ -4,8 +4,14 @@ 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.12.0] - 2018-10-15
8
+There's been a host of changes in the past six months, and this Halloween release has a number of very useful improvements.
9
+
10
+For example, passwords are now hashed in a _much_ better way than we did it before (jlatt's original method back from [Ergonomadic](https://github.com/edmund-huber/ergonomadic) was the right way to do things), the database now auto-upgrades for you when it detects a new version, thanks to Slingamn we now have vhosts, and there's been a ton of rewrites under-the-hood to improve stability and performance.
11
+
12
+If you have any trouble with this release, please let us know with an issue on our tracker, or by talking to us in `#oragono` on Freenode.
13
+
14
+Thanks to [slingamn](https://github.com/slingamn) for a lot of heavy lifting this release and to [vilmibm](https://github.com/vilmibm) for contributing a documentation fix!
9 15
 
10 16
 ### Config Changes
11 17
 * `allow-multiple-per-connection` key removed from `accounts`.
@@ -17,6 +23,8 @@ New release of Oragono!
17 23
 * new oper capabilities `accreg`, `sajoin`, `vhosts` and `chanreg` added.
18 24
 
19 25
 ### Security
26
+* Password hashing has been improved (with current passwords being automatically upgraded to use the new method).
27
+* Various crashes have been resolved.
20 28
 
21 29
 ### Added
22 30
 * Added database auto-upgrades.

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

Loading…
Cancel
Save