Skip to content

Commit

Permalink
bumped the version number to 0.37
Browse files Browse the repository at this point in the history
  • Loading branch information
tapajos committed Mar 31, 2010
1 parent 5eb40e5 commit e5cf39f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ begin
gemspec.homepage = "http://github.com/couchrest/couchrest"
gemspec.authors = ["J. Chris Anderson", "Matt Aimonetti", "Marcos Tapajos", "Will Leinweber"]
gemspec.extra_rdoc_files = %w( README.md LICENSE THANKS.md )
gemspec.files = %w( LICENSE README.md Rakefile THANKS.md history.txt) + Dir["{examples,lib,spec,utils}/**/*"] - Dir["spec/tmp"]
gemspec.files = %w( LICENSE README.md Rakefile THANKS.md history.txt couchrest.gemspec) + Dir["{examples,lib,spec,utils}/**/*"] - Dir["spec/tmp"]
gemspec.has_rdoc = true
gemspec.add_dependency("rest-client", ">= 0.5")
gemspec.add_dependency("mime-types", ">= 1.15")
Expand Down
3 changes: 2 additions & 1 deletion couchrest.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Gem::Specification.new do |s|
s.name = %q{couchrest}
s.version = "0.36"
s.version = "0.37"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["J. Chris Anderson", "Matt Aimonetti", "Marcos Tapajos", "Will Leinweber"]
Expand All @@ -22,6 +22,7 @@ Gem::Specification.new do |s|
"README.md",
"Rakefile",
"THANKS.md",
"couchrest.gemspec",
"examples/model/example.rb",
"examples/word_count/markov",
"examples/word_count/views/books/chunked-map.js",
Expand Down
4 changes: 4 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

* Major enhancements

* Minor enhancements

== 0.37

* Minor enhancements
* Added gemspec (needed for Bundler install) (Tapajós)

Expand Down
2 changes: 1 addition & 1 deletion lib/couchrest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

# = CouchDB, close to the metal
module CouchRest
VERSION = '0.36' unless self.const_defined?("VERSION")
VERSION = '0.37' unless self.const_defined?("VERSION")

autoload :Server, 'couchrest/core/server'
autoload :Database, 'couchrest/core/database'
Expand Down

0 comments on commit e5cf39f

Please sign in to comment.