Browse Source

Merge pull request #575 from oragono/release

final changes for release
tags/v1.1.0
Shivaram Lingamneni 5 years ago
parent
commit
2deaad6de1
No account linked to committer's email address
2 changed files with 11 additions and 4 deletions
  1. 10
    3
      CHANGELOG.md
  2. 1
    1
      irc/constants.go

+ 10
- 3
CHANGELOG.md View File

@@ -1,8 +1,8 @@
1 1
 # Changelog
2 2
 All notable changes to Oragono will be documented in this file.
3 3
 
4
-## [1.1.0-rc1] - 2019-06-11
5
-We're pleased to be publishing the release candidate for 1.1.0 (the official release should follow in a week or two, with more complete credits). This version has a number of exciting improvements, including:
4
+## [1.1.0] - 2019-06-27
5
+We're pleased to announce Oragono version 1.1.0. This version has a number of exciting improvements, including:
6 6
 
7 7
 * Simplified commands for registering new accounts with NickServ.
8 8
 * Support for IP cloaking.
@@ -10,11 +10,13 @@ We're pleased to be publishing the release candidate for 1.1.0 (the official rel
10 10
 * Support for the newly ratified [message tags](https://ircv3.net/specs/extensions/message-tags.html) and [message ID](https://ircv3.net/specs/extensions/message-ids.html) IRCv3 specifications; client developers are invited to use Oragono as a reference when implementing these specifications.
11 11
 * Support for running Oragono as a Tor hidden service.
12 12
 
13
+Many thanks to [@Ascrod](https://github.com/Ascrod), [@amyspark](https://github.com/amyspark), [@bogdomania](https://github.com/bogdomania), [@csmith](https://github.com/csmith), [@jesopo](https://github.com/jesopo), [@jwheare](https://github.com/jwheare), lover, and [@transitracer](https://github.com/oragono/oragono/issues/456) for reporting issues and contributing patches, and also to [@bogdomania](https://github.com/bogdomania), Elvedin Hušić, Nuve, and [@streaps](https://github.com/streaps) for contributing translations.
14
+
13 15
 ### Upgrade notes
14 16
 
15 17
 This release includes a database change. If you have `datastore.autoupgrade` set to `true` in your configuration, it will be automatically applied when you restart Oragono. Otherwise, you can update the database manually by running `oragono upgradedb` (see the manual for complete instructions).
16 18
 
17
-No changes to your configuration file should be required for this upgrade; however, updating the file is necessary to enable some new functionality, as described below.
19
+No changes to your configuration file should be required for this upgrade. However, updating the file is necessary to enable some new functionality, as described below.
18 20
 
19 21
 ### Config changes
20 22
 * `tor-listeners` section added for configuring listeners for use with Tor.
@@ -30,6 +32,7 @@ No changes to your configuration file should be required for this upgrade; howev
30 32
 
31 33
 ### Security
32 34
 * Users can no longer impersonate network services like ChanServ by using confusing nicks like "ChɑnServ" (#519, thanks [@csmith](https://github.com/csmith)!).
35
+* Closed several loopholes in confusable nick detection (#562, #564, #570, thanks lover!)
33 36
 * Secret channels (mode `+s`) now act more secret (#380, thanks [@csmith](https://github.com/csmith)!).
34 37
 * The `+R` (registered-only) mode now prevents unregistered users from joining the channel, not just from speaking (#463, thanks [@bogdomania](https://github.com/bogdomania)!).
35 38
 * Limited how many messages clients can send during connection registration to mitigate potential DoS attacks (#505).
@@ -63,6 +66,8 @@ No changes to your configuration file should be required for this upgrade; howev
63 66
 * Support for the [draft/event-playback](https://github.com/DanielOaks/ircv3-specifications/blob/master+event-playback/extensions/batch/history.md) spec (#457).
64 67
 * The `TAGMSG` and `NICK` messages are now replayable in history (#457).
65 68
 * Added the draft IRCv3 [`SETNAME` command](https://ircv3.net/specs/extensions/setname) for changing your realname (#372).
69
+* Added new Bosnian (bs-BA) translation (thanks to Elvedin Hušić!).
70
+* Added new German (de-DE) translation (thanks to streaps!).
66 71
 
67 72
 ### Changed
68 73
 * Registering an account with NickServ is now `/msg NickServ register <password>`, which registers the current nickname as an account, matching other services (#410).
@@ -83,6 +88,8 @@ No changes to your configuration file should be required for this upgrade; howev
83 88
 * `NICKSERV ENFORCE` is deprecated in favor of the new `NICKSERV SET ENFORCE` (the old syntax is still available as an alias).
84 89
 * The `WHO` command is now treated like `PONG` in that it doesn't count as user activity, since client software often uses it automatically (#485).
85 90
 * The `NAMES` command now only returns results for the first given channel (#534).
91
+* Updated French (fr-FR) translation (thanks to Nuve!).
92
+* Updated Română (ro-RO) translation (thanks to [@bogdomania](https://github.com/bogdomania)!).
86 93
 
87 94
 ### Internal Notes
88 95
 * Building Oragono is now easier (#409).

+ 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 = "1.1.0-rc1"
12
+	SemVer = "1.1.0"
13 13
 )
14 14
 
15 15
 var (

Loading…
Cancel
Save