Browse Source

Release v0.6.0

tags/v0.6.0^0
Daniel Oaks 7 years ago
parent
commit
a9dfff4f30
2 changed files with 11 additions and 8 deletions
  1. 10
    7
      CHANGELOG.md
  2. 1
    1
      irc/constants.go

+ 10
- 7
CHANGELOG.md View File

@@ -4,16 +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.6.0] - 2017-01-19
8
+We've added a ton of new features in this release! Automated connection throttling, the ability to `KLINE`, updated casemapping and line-length specifications.
9 9
 
10
-### Security
10
+I've also started including a new section in the changelog called **Config Changes**, which should help you find what you need to update across releases.
11
+
12
+### Config Changes
13
+* `enabled` key added under the `connection-limits` section.
14
+* `connection-throttling` section added under `server`.
15
+* `linelen` section added under `limits`.
11 16
 
12 17
 ### Added
13 18
 * Added ARM build (for Raspberry PIs and similar).
14 19
 * Added automated connection throttling! See the new `connection-throttling` section in the config.
15 20
 * Added `KLINE` and `UNKLINE` commands. Complementing `DLINE`'s per-IP and per-network bans, this lets you ban masks from the server.
16
-* Added `LUSERS` command (thanks @vegax87!).
21
+* Added `LUSERS` command (thanks @vegax87).
17 22
 * Added draft IRCv3 capabilities [`draft/message-tags-0.2`](http://ircv3.net/specs/core/message-tags-3.3.html) and [`draft/message-ids`](http://ircv3.net/specs/extensions/message-ids.html).
18 23
 * Added proposed IRCv3 capability [`draft/maxline`](https://github.com/ircv3/ircv3-specifications/pull/281).
19 24
 
@@ -21,12 +26,10 @@ New release of Oragono!
21 26
 * Changed casemapping from "rfc7700" to "rfc7613", to match new draft spec.
22 27
 * Connection limits can now be freely enabled or disabled. If updating, check the new `enabled` flag under the `connection-limits` section of the config.
23 28
 
24
-### Removed
25
-
26 29
 ### Fixed
27 30
 * Fixed an issue where `UNDLINE` didn't save across server launches.
28 31
 * Removed several race conditions which could result in server panics.
29
-* WHOIS: Multiple channels now appear in a single reply (thanks @vegax87!).
32
+* WHOIS: Multiple channels now appear in a single reply (thanks @vegax87).
30 33
 
31 34
 
32 35
 ## [0.5.0] - 2016-12-10

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

Loading…
Cancel
Save