diff --git a/history.txt b/history.txt index d05aca0..3ac3c2c 100644 --- a/history.txt +++ b/history.txt @@ -1,5 +1,11 @@ == Next Version +* Major enhancements + +* Minor enhancements + +== 0.35 + * Major enhancements * CouchRest::ExtendedDocument allow chaining the inherit class callback (Kenneth Kalmer) - http://github.com/couchrest/couchrest/issues#issue/8 @@ -12,6 +18,7 @@ * Bug fix: Changing Class proxy to set database on result sets (Peter Gumeson) * Bug fix: Updated time regexp (Nolan Darilek) * Added an update_doc method to database to handle conflicts during atomic updates. (Pierre Larochelle) + * Bug fix: http://github.com/couchrest/couchrest/issues/#issue/2 (Luke Burton) == 0.34 diff --git a/lib/couchrest.rb b/lib/couchrest.rb index 03a6a65..e88d5a8 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.34' unless self.const_defined?("VERSION") + VERSION = '0.35' unless self.const_defined?("VERSION") autoload :Server, 'couchrest/core/server' autoload :Database, 'couchrest/core/database'