Skip to content

Commit

Permalink
0.4.22 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
derekcollison committed Mar 5, 2012
1 parent da6f674 commit ed5710a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
nats (0.4.22.beta.8)
nats (0.4.22)
daemons (>= 1.1.4)
eventmachine (>= 0.12.10)
json_pure (>= 1.6.1)
Expand Down
4 changes: 2 additions & 2 deletions HISTORY.md
@@ -1,6 +1,6 @@
# HISTORY

## v0.4.22.beta.6 (Jan 15, 2012)
## v0.4.22 (Mar 5, 2012)

- HTTP based server monitoring (/varz, /connz, /healthz)
- Perfomance and Stability improvements
Expand All @@ -14,7 +14,7 @@
- Client Fast Producer support
- Client reconenct callbacks
- Server Max Connections support
- See full list @ https://github.com/derekcollison/nats/compare/v0.4.10...v0.4.22.beta.6
- See full list @ https://github.com/derekcollison/nats/compare/v0.4.10...v0.4.22

## v0.4.10 (Apr 21, 2011)

Expand Down
3 changes: 2 additions & 1 deletion TODO
@@ -1,5 +1,5 @@

- balance receive perf with send perf (EM issue, iovec)

- do client blowup detection from sending in tight loop
- allow port to also be listen_port in config file
- queue groups allow selection, e.g. round robin vs random
Expand All @@ -13,6 +13,7 @@
- [IN PROGRESS] tests!
- [IN PROGRESS] JRuby support - works if you hand run servers for tests

- [DONE] balance receive perf with send perf (EM issue, iovec)
- [DONE] Time interval Pings from server..
- [DONE] Ping/Pong time window
- [DONE] monitoring
Expand Down
2 changes: 1 addition & 1 deletion lib/nats/client.rb
Expand Up @@ -8,7 +8,7 @@

module NATS

VERSION = '0.4.22.beta.8'.freeze
VERSION = '0.4.22'.freeze

DEFAULT_PORT = 4222
DEFAULT_URI = "nats://localhost:#{DEFAULT_PORT}".freeze
Expand Down
2 changes: 1 addition & 1 deletion lib/nats/server/const.rb
@@ -1,7 +1,7 @@

module NATSD #:nodoc:

VERSION = '0.4.22.beta.8'
VERSION = '0.4.22'
APP_NAME = 'nats-server'

DEFAULT_PORT = 4222
Expand Down

0 comments on commit ed5710a

Please sign in to comment.