Browse Source

Release v0.7.0

tags/v0.7.0^0
Daniel Oaks 7 years ago
parent
commit
1741a0fad1
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,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.7.0] - 2017-03-27
8
+This release brings channel registration with ChanServ, logging improvements, and a whole host of improvements across the board.
9
+
10
+Thanks to a suggestion by `dp-` on our channel (`#oragono` on Freenode), the socket handling code has been overhauled to allow for a larger number of more stable connections. As well, improved testing has brought with it a bunch of strange hang and crash fixes, which means that Oragono should be more stable than ever.
11
+
12
+Channel registration is really cool. Essentially, you register the channel with `/CS REGISTER` as you would on any network, and then all topic changes, the `+b/+e/+I` lists, and your founder status, are all remembered and re-applied when the server's restarted.
9 13
  
10 14
 ### Config Changes
11 15
 * `channels` section added to control channel registration.
@@ -15,8 +19,6 @@ New release of Oragono!
15 19
 * `samode` capability added to oper capabilities.
16 20
 * `sts` section added under `server`.
17 21
 
18
-### Security
19
- 
20 22
 ### Added
21 23
 * Added `ChanServ` service, to allow channel registration.
22 24
 * Added `USERHOST` command (thanks @vegax87).
@@ -28,8 +30,6 @@ New release of Oragono!
28 30
 * Logging is now much more useful, displays colours and can log to disk.
29 31
 * Socket handling has been rewritten, which means we should support more connections more effectively (thanks dp- for the suggestion!).
30 32
 
31
-### Removed
32
- 
33 33
 ### Fixed
34 34
 * Fixed a bunch of small hangs and crashes.
35 35
 * Fixed an account issue where clients could login to multiple accounts 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.7.0-unreleased"
12
+	SemVer = "0.7.0"
13 13
 )
14 14
 
15 15
 var (

Loading…
Cancel
Save