diff options
author | Azul <azul@riseup.net> | 2016-10-02 15:34:18 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2016-10-17 11:02:40 +0200 |
commit | 968c6304e01b89cb6e5c62e8f067cf371c12dca4 (patch) | |
tree | f9f7fc37f18465a635ef957a0d78fa24c3b34e2b | |
parent | 707a2db19420cbcbbb12651761ef3f1859f4f7d4 (diff) |
Version 0.9.00.9.0
Allow queries by fingerprint (using keyservers to reply) and support key
lookup from other nickservers.
This is a major rewrite both in terms of our dependencies and our
architecture. We moved the server and http_client from eventmachine to
Celluloid based libraries. This allows for a more concise syntax and
proper https handling.
In addition we now support ruby 2.3, use a Logger instead of stdout and handle
network errors properly
-rw-r--r-- | Gemfile.lock | 5 | ||||
-rw-r--r-- | lib/nickserver/version.rb | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index 3ac4164..c29ba65 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - nickserver (0.3.0) + nickserver (0.9.0) http reel @@ -69,3 +69,6 @@ DEPENDENCIES minitest nickserver! rake + +BUNDLED WITH + 1.12.5 diff --git a/lib/nickserver/version.rb b/lib/nickserver/version.rb index 15afa73..0598ca8 100644 --- a/lib/nickserver/version.rb +++ b/lib/nickserver/version.rb @@ -1,3 +1,3 @@ module Nickserver - VERSION = "0.3.0" + VERSION = "0.9.0" end |