Bump version to 2.2.0

This commit is contained in:
Joshua Clayton 2011-10-14 10:31:02 -04:00
parent 334b8a9449
commit 41f73b5e39
7 changed files with 21 additions and 6 deletions

View File

@ -1,3 +1,18 @@
2.2.0 (October 14, 2011)
Clean up RSpec suite to not use 'should'
Use create_list in step definitions
Syntax methods that deal with ORM interaction (attributes_for, build, build_stubbed,
and create) now accept a block that yields the result. This results in a
more convenient way to interact with the result than using Object.tap.
Standardize deprecation warnings
Update transient attribute syntax to use blocks instead of calling ignore on
each attribute declaration
Parents can be defined after children because factories are evaluated when
they're used; this means breaking up factories across multiple files will
behave as expected
Large internal refactoring, including changing access modifiers for a
handful of methods for a more clearly defined API
2.1.2 (September 23, 2011)
Bugfix: Vintage syntax fixed after bug introduced in 2.1.1
Introduce dependency on activesupport to remove code from Factory class

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
factory_girl (2.1.2)
factory_girl (2.2.0)
activesupport
GEM

View File

@ -1,7 +1,7 @@
PATH
remote: /Users/joshuaclayton/dev/gems/factory_girl
specs:
factory_girl (2.1.2)
factory_girl (2.2.0)
activesupport
GEM

View File

@ -1,7 +1,7 @@
PATH
remote: /Users/joshuaclayton/dev/gems/factory_girl
specs:
factory_girl (2.1.2)
factory_girl (2.2.0)
activesupport
GEM

View File

@ -1,7 +1,7 @@
PATH
remote: /Users/joshuaclayton/dev/gems/factory_girl
specs:
factory_girl (2.1.2)
factory_girl (2.2.0)
activesupport
GEM

View File

@ -1,7 +1,7 @@
PATH
remote: /Users/joshuaclayton/dev/gems/factory_girl
specs:
factory_girl (2.1.2)
factory_girl (2.2.0)
activesupport
GEM

View File

@ -1,4 +1,4 @@
module FactoryGirl
VERSION = "2.1.2"
VERSION = "2.2.0"
end