Skip to content

Commit 2deaad6

Browse files
authored
Merge pull request #575 from oragono/release
final changes for release
2 parents 5789c9b + 1d7e3c5 commit 2deaad6

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
# Changelog
22
All notable changes to Oragono will be documented in this file.
33

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:
66

77
* Simplified commands for registering new accounts with NickServ.
88
* Support for IP cloaking.
99
* Support for attaching multiple clients to the same nickname.
1010
* 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.
1111
* Support for running Oragono as a Tor hidden service.
1212

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+
1315
### Upgrade notes
1416

1517
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).
1618

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.
1820

1921
### Config changes
2022
* `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
3032

3133
### Security
3234
* 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!)
3336
* Secret channels (mode `+s`) now act more secret (#380, thanks [@csmith](https://github.com/csmith)!).
3437
* The `+R` (registered-only) mode now prevents unregistered users from joining the channel, not just from speaking (#463, thanks [@bogdomania](https://github.com/bogdomania)!).
3538
* 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
6366
* Support for the [draft/event-playback](https://github.com/DanielOaks/ircv3-specifications/blob/master+event-playback/extensions/batch/history.md) spec (#457).
6467
* The `TAGMSG` and `NICK` messages are now replayable in history (#457).
6568
* 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!).
6671

6772
### Changed
6873
* 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
8388
* `NICKSERV ENFORCE` is deprecated in favor of the new `NICKSERV SET ENFORCE` (the old syntax is still available as an alias).
8489
* 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).
8590
* 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)!).
8693

8794
### Internal Notes
8895
* Building Oragono is now easier (#409).

irc/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import "fmt"
99

1010
const (
1111
// SemVer is the semantic version of Oragono.
12-
SemVer = "1.1.0-rc1"
12+
SemVer = "1.1.0"
1313
)
1414

1515
var (

0 commit comments

Comments
 (0)