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

6 comments on commit ed5710a

@oza
Copy link

@oza oza commented on ed5710a Mar 6, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good job :-)
And, what's up with nats cluster? Please let me know if you need help about clustering work.

@derekcollison
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Its close, should be released fairly soon for first beta..

@oza
Copy link

@oza oza commented on ed5710a Mar 7, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's good to hear that it's going to come out soon!
Thank you for sharing.

@derekcollison
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can see how I am doing on the cluster branch.. ;)

@oza
Copy link

@oza oza commented on ed5710a Mar 7, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okey, I'll watch it :-)

@derekcollison
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Look at the test suite to get a good idea, that is where you can learn the most..

Please sign in to comment.