diff options
author | Azul <azul@riseup.net> | 2017-08-03 16:41:13 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2017-08-03 16:41:18 +0200 |
commit | 4a9ac60d97b02680ea7197ddb9c00c261b9a33f3 (patch) | |
tree | 31b408c16629c90baf2bce88d945c4a0695546c1 | |
parent | e44f2f1801725f4f6a236fe5e588ac73bd31706c (diff) |
Version 0.10.00.10.0
This is a maintainance release - bugfixes and upgrades of dependencies.
This release fixes a major issue with leaking file descriptors. Please
upgrade as soon as possible. Ruby 2.1 is required - no other upgrade
issues are known.
bugfixes:
* #3 handle domains without A-record
* filedescriptor leak from http_adapters
* send empty json object on 404 rather than nil
* remote nicknym is on port 6425
* use user:password@ prefix in http basic auth
upgrades:
* require at least ruby 2.1
* upgrade bundled gems to latest available
tests:
* more meaningful error messages in case of failures
* test bundle is up to date
* regression test for nonexisting domain
integration:
* Add systemd service unit file
* Restart nickserver automatically from systemd
* gitignore: bundle dir
cleanup:
* old empty adapters and tests
-rw-r--r-- | Gemfile.lock | 2 | ||||
-rw-r--r-- | lib/nickserver/version.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index 4e934ac..22848f4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - nickserver (0.9.0) + nickserver (0.10.0) http nio4r (~> 1.2) reel diff --git a/lib/nickserver/version.rb b/lib/nickserver/version.rb index 0598ca8..9811fb5 100644 --- a/lib/nickserver/version.rb +++ b/lib/nickserver/version.rb @@ -1,3 +1,3 @@ module Nickserver - VERSION = "0.9.0" + VERSION = "0.10.0" end |