bumped the version number to 0.35

improve_associations
Marcos Tapajós 2010-02-27 21:38:20 -03:00
parent 228783d453
commit 0d0a8ae6b8
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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'