-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump to version 2.0.0! Let the celebrations begin
- Loading branch information
1 parent
d363614
commit 0c1eccd
Showing
3 changed files
with
5 additions
and
70 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 Protobuf | ||
VERSION = '2.0.0.rc6' | ||
VERSION = '2.0.0' | ||
PROTOC_VERSION = '2.4.1' | ||
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 |
---|---|---|
|
@@ -8,10 +8,10 @@ Gem::Specification.new do |s| | |
s.date = Time.now.strftime('%Y-%m-%d') | ||
|
||
s.authors = ['BJ Neilsen', 'Brandon Dewitt'] | ||
s.email = ["[email protected]", "[email protected]"] | ||
s.homepage = %q{https://github.com/localshred/protobuf} | ||
s.summary = 'Ruby implementation for Protocol Buffers. Works with other protobuf rpc implementations (e.g. Java, Python, C++).' | ||
s.description = s.summary + "\n\nThis gem has diverged from https://github.com/macks/ruby-protobuf. All credit for serialization and rprotoc work most certainly goes to the original authors. All RPC implementation code (client/server/service) was written and is maintained by this author. Attempts to reconcile the original codebase with the current RPC implementation went unsuccessful." | ||
s.email = ["bj.neilsen+protobuf@gmail.com", "[email protected]"] | ||
s.homepage = "https://github.com/localshred/protobuf" | ||
s.summary = "Google Protocol Buffers v#{Protobuf::PROTOC_VERSION} Serialization and RPC implementation for Ruby." | ||
s.description = s.summary | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
|