Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Jan 26, 2012
1 parent 76d6bd6 commit f30980f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
0.11.0 - 2012-01-26

Enhancements:

* Adds support for has_one polymorphic embedded associations
* Adds namespacing to model generator
* Adds :context option to validates_associated

many :things
validates_associated :things, :context => :custom_context

* Adds ActiveRecord-compatible association reflection
* Adds support for setting mongo connection options in mongo.yml

production:
uri: <%= ENV['MONGOHQ_URL'] %>
options:
safe: true

* Adds #timestamps! to embedded documents

Bug Fixes

* #update_attribute now ignores attr_accessible and attr_protected
* Fix deprecation warnings in Rails 3.2

https://github.com/jnunemaker/mongomapper/compare/v0.10.1...v0.11.0
2 changes: 1 addition & 1 deletion lib/mongo_mapper/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# encoding: UTF-8
module MongoMapper
Version = '0.10.1'
Version = '0.11.0'
end

0 comments on commit f30980f

Please sign in to comment.