bumped the version number to 0.35
This commit is contained in:
parent
228783d453
commit
0d0a8ae6b8
|
@ -1,5 +1,11 @@
|
||||||
== Next Version
|
== Next Version
|
||||||
|
|
||||||
|
* Major enhancements
|
||||||
|
|
||||||
|
* Minor enhancements
|
||||||
|
|
||||||
|
== 0.35
|
||||||
|
|
||||||
* Major enhancements
|
* Major enhancements
|
||||||
* CouchRest::ExtendedDocument allow chaining the inherit class callback (Kenneth Kalmer) - http://github.com/couchrest/couchrest/issues#issue/8
|
* 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: Changing Class proxy to set database on result sets (Peter Gumeson)
|
||||||
* Bug fix: Updated time regexp (Nolan Darilek)
|
* Bug fix: Updated time regexp (Nolan Darilek)
|
||||||
* Added an update_doc method to database to handle conflicts during atomic updates. (Pierre Larochelle)
|
* 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
|
== 0.34
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ require 'couchrest/monkeypatches'
|
||||||
|
|
||||||
# = CouchDB, close to the metal
|
# = CouchDB, close to the metal
|
||||||
module CouchRest
|
module CouchRest
|
||||||
VERSION = '0.34' unless self.const_defined?("VERSION")
|
VERSION = '0.35' unless self.const_defined?("VERSION")
|
||||||
|
|
||||||
autoload :Server, 'couchrest/core/server'
|
autoload :Server, 'couchrest/core/server'
|
||||||
autoload :Database, 'couchrest/core/database'
|
autoload :Database, 'couchrest/core/database'
|
||||||
|
|
Loading…
Reference in a new issue