Skip to content

Commit

Permalink
Bump version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaclayton committed Oct 14, 2011
1 parent 334b8a9 commit 41f73b5
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions Changelog
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
factory_girl (2.1.2)
factory_girl (2.2.0)
activesupport

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/2.1.gemfile.lock
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/2.3.gemfile.lock
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/3.0.gemfile.lock
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/3.1.gemfile.lock
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/factory_girl/version.rb
@@ -1,4 +1,4 @@
module FactoryGirl
VERSION = "2.1.2"
VERSION = "2.2.0"
end

0 comments on commit 41f73b5

Please sign in to comment.