Browse Source

Back to -unreleased

tags/v0.11.0
Daniel Oaks 6 years ago
parent
commit
df17b77266
2 changed files with 7 additions and 7 deletions
  1. 6
    6
      CHANGELOG.md
  2. 1
    1
      irc/constants.go

+ 6
- 6
CHANGELOG.md View File

@@ -4,12 +4,8 @@ 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
-## [0.11.0-beta] - 2018-04-11
8
-This is a beta preview of the v0.11.0 release, which is _actually_ likely to come this weekend. There's a whole lot of useful, important changes in this release including better debugging features, languages, nick reservation, email verification for new accounts, and a `CAP REQ` fix!
9
-
10
-If you have any trouble with this release, please let us know with an issue on our [tracker](https://github.com/oragono/oragono/issues), or by talking to us in `#oragono` on Freenode.
11
-
12
-Thanks a bunch for all the help with this release – especially to our translators and to Slingamn for being an awesome co-maintainer!
7
+## Unreleased
8
+New release of Oragono!
13 9
 
14 10
 ### Config Changes
15 11
 * `callbacks` section added under `accounts/registration`, configuring our new email verification (disabled by default).
@@ -22,6 +18,8 @@ Thanks a bunch for all the help with this release – especially to our translat
22 18
 * `skip-server-password` key added under `accounts`, to better support certain clients.
23 19
 * `verify-timeout` default value changed from 120 hours to 32 hours under `accounts/registration`.
24 20
 
21
+### Security
22
+
25 23
 ### Added
26 24
 * Added a debug pprof endpoint, which is disabled by default and can be exposed in the config.
27 25
 * Added a manual to our documentation! This is primarily where we'll be adding user-facing information and instructions from now on.
@@ -53,6 +51,8 @@ Thanks a bunch for all the help with this release – especially to our translat
53 51
 * `genpasswd` now requires that you confirm the input passphrase.
54 52
 * Message IDs are now much shorter and easier to read – down from 39 characters to 16 while preserving a very similar gaurantee of uniqueness (thanks [@prawnsalad](https://github.com/prawnsalad) for bringing up this issue).
55 53
 
54
+### Removed
55
+
56 56
 ### Fixed
57 57
 * We now correctly suspend registration when receiving a `CAP REQ`, as per [the spec](https://ircv3.net/specs/core/capability-negotiation-3.1.html).
58 58
 * We now properly cut off clients who try to send us too much data at once.

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

Loading…
Cancel
Save