Bladeren bron

Release v0.5.0

tags/v0.5.0^0
Daniel Oaks 7 jaren geleden
bovenliggende
commit
20fe4c7704
2 gewijzigde bestanden met toevoegingen van 6 en 6 verwijderingen
  1. 5
    5
      CHANGELOG.md
  2. 1
    1
      irc/constants.go

+ 5
- 5
CHANGELOG.md Bestand weergeven

@@ -4,10 +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.5.0] - 2016-12-10
8
+This release includes a ton of fixes, as well as the ability to ban IP addresses from your network with the `DLINE` command!
9 9
 
10
-### Security
10
+As well, there are some major fixes with the libraries Oragono depends on, which fix various DoS attacks, crashes and timeouts. In short, this release is more stable and fixes a bunch of issues.
11
+
12
+This release also updates the database, so be sure to run the `oragono upgradedb` command.
11 13
 
12 14
 ### Added
13 15
 * Added ability to ban IP addresses and networks from the server with the `DLINE` and `UNDLINE` commands.
@@ -17,8 +19,6 @@ New release of Oragono!
17 19
 * Database upgraded to make handling accounts simpler.
18 20
 * Only give chanop (`@`) on channel join, not channel founder (`~`). We'll do channel founder and all on registered chans only.
19 21
 
20
-### Removed
21
-
22 22
 ### Fixed
23 23
 * Fix a bunch of bugs around setting nicknames on join.
24 24
 * Fixed crash when using STATUSMSG-like messaging.

+ 1
- 1
irc/constants.go Bestand weergeven

@@ -9,7 +9,7 @@ import "fmt"
9 9
 
10 10
 const (
11 11
 	// SemVer is the semantic version of Oragono.
12
-	SemVer = "0.5.0-unreleased"
12
+	SemVer = "0.5.0"
13 13
 )
14 14
 
15 15
 var (

Laden…
Annuleren
Opslaan