Skip to content

Commit

Permalink
prep for 1.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
malmckay committed Sep 27, 2021
1 parent 63c5370 commit 51ee2f6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion RELEASES.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
This file notes feature differences and bugfixes contained between releases.

### v1.10.0 ###

* Updates dependency on zookeeper gem to 1.5.0 #90 (h/t: @malmckay)
* Move build to Github Actions, drop support for older Rubies (#104) (h/t: @malmckay)
* bump yard revision to ~> 0.9.11 (Fixes #101) (#102) (h/t: @slyphon)
* Add other Ruby versions with currently breaking tests (h/t: @berlincount)
* RSpec 3 support and cleanups (h/t: @nerdrew)
* Interrupt blocked locker (h/t: @lmarburger)

### v1.9.6 ###

* Fixes from @rickypai for ruby 2.2 (#89)
Expand Down Expand Up @@ -259,7 +268,7 @@ You are __STRONGLY ENCOURAGED__ to go and look at the [CHANGELOG](http://git.io/
* add zk.register(:all) to recevie node updates for all nodes (i.e. not filtered on path)

* add 'interest' feature to zk.register, now you can indicate what kind of events should be delivered to the given block (previously you had to do that filtering inside the block). The default behavior is still the same, if no 'interest' is given, then all event types for the given path will be delivered to that block.

zk.register('/path', :created) do |event|
# event.node_created? will always be true
end
Expand Down
2 changes: 1 addition & 1 deletion lib/zk/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ZK
VERSION = "1.9.6"
VERSION = "1.10.0"
end

0 comments on commit 51ee2f6

Please sign in to comment.