From e5cf39f80994cb6427dbb2f2e9199daac339a9f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Tapaj=C3=B3s?= Date: Tue, 30 Mar 2010 21:25:23 -0300 Subject: [PATCH] bumped the version number to 0.37 --- Rakefile | 2 +- couchrest.gemspec | 3 ++- history.txt | 4 ++++ lib/couchrest.rb | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index 2c4ee9e..f62ddc8 100644 --- a/Rakefile +++ b/Rakefile @@ -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") diff --git a/couchrest.gemspec b/couchrest.gemspec index 6254b8f..a64f660 100644 --- a/couchrest.gemspec +++ b/couchrest.gemspec @@ -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"] @@ -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", diff --git a/history.txt b/history.txt index 5bb98da..48f3c76 100644 --- a/history.txt +++ b/history.txt @@ -2,6 +2,10 @@ * Major enhancements +* Minor enhancements + +== 0.37 + * Minor enhancements * Added gemspec (needed for Bundler install) (Tapajós) diff --git a/lib/couchrest.rb b/lib/couchrest.rb index bb58e1e..50f328f 100644 --- a/lib/couchrest.rb +++ b/lib/couchrest.rb @@ -28,7 +28,7 @@ require 'couchrest/monkeypatches' # = 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'