-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update changelog, prep for 1.5.0 release (#101)
- Loading branch information
Showing
4 changed files
with
21 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module Zookeeper | ||
VERSION = '1.4.11' | ||
VERSION = '1.5.0' | ||
DRIVER_VERSION = '3.4.5' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,21 @@ Gem::Specification.new do |s| | |
s.name = 'zookeeper' | ||
s.version = Zookeeper::VERSION | ||
|
||
s.authors = ["Phillip Pearson", "Eric Maland", "Evan Weaver", "Brian Wickman", "Neil Conway", "Jonathan D. Simms"] | ||
s.authors = [ | ||
"Phillip Pearson", | ||
"Eric Maland", | ||
"Evan Weaver", | ||
"Brian Wickman", | ||
"Neil Conway", | ||
"Jonathan D. Simms", | ||
"Mal McKay", | ||
] | ||
s.email = ["[email protected]"] | ||
s.summary = %q{Apache ZooKeeper driver for Rubies} | ||
s.description = <<-EOS | ||
A low-level multi-Ruby wrapper around the ZooKeeper API bindings. For a | ||
friendlier interface, see http://github.com/slyphon/zk. Currently supported: | ||
MRI: {1.8.7, 1.9.2, 1.9.3}, JRuby: ~> 1.6.7, Rubinius: 2.0.testing, REE 1.8.7. | ||
MRI: {2.5, 2.6, 2.7, 3.0}, JRuby: ~> 9.2.x.x | ||
This library uses version #{Zookeeper::DRIVER_VERSION} of zookeeper bindings. | ||
|