Browse Source

Release v0.3.0

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

+ 6
- 5
CHANGELOG.md View File

@@ -4,8 +4,10 @@ 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.3.0] - 2016-10-23
8
+We now support dynamically reloading the config file, along with some new IRCv3 capabilities and some fixes.
9
+
10
+The `REHASH` changes are fairly extensive here, but should now be stable (this also fixes a denial of service possible with the old code).
9 11
 
10 12
 ### Security
11 13
 * Prevent a denial of service where the server would stop accepting connections.
@@ -17,11 +19,10 @@ New release of Oragono!
17 19
 * Added support for IRCv3 capabilities [`cap-notify`](http://ircv3.net/specs/extensions/cap-notify-3.2.html) and [`echo-message`](http://ircv3.net/specs/extensions/echo-message-3.2.html).
18 20
 
19 21
 ### Changed
20
-* Server operators no longer have permissions to do everything in channels. 
21
-
22
-### Removed
22
+* Server operators no longer have permissions to do everything in channels.
23 23
 
24 24
 ### Fixed
25
+* MODE: Fixed issue where channel privelege changes returned incorrectly.
25 26
 
26 27
 
27 28
 ## [0.2.0] - 2016-10-16

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

Loading…
Cancel
Save