Bump version to 4.2.0

This commit is contained in:
Joshua Clayton 2013-01-18 14:40:57 -05:00
parent d417d3b5bd
commit 21ba127827
7 changed files with 17 additions and 6 deletions

View File

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
factory_girl (4.1.0) factory_girl (4.2.0)
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
GEM GEM

11
NEWS
View File

@ -1,3 +1,14 @@
4.2.0 (January 18, 2013)
Improve documentation
Allow *_list syntax methods to accept a block
Update gem dependencies
Allow setting id for objects created with `build_stubbed`
Fix Stub strategy to mimic ActiveRecord regarding `created_at`
Evaluate sequences within the context of an Evaluator
Fix Mocha deprecation warning
Fix some warnings when running RUBYOPT=-w rake
Convert test suite to RSpec's "expect" syntax
4.1.0 (September 11, 2012) 4.1.0 (September 11, 2012)
Allow multiple callbacks to bind to the same block Allow multiple callbacks to bind to the same block
Fix documentation surrounding the stub strategy Fix documentation surrounding the stub strategy

View File

@ -1,7 +1,7 @@
PATH PATH
remote: /Users/joshuaclayton/dev/gems/factory_girl remote: /Users/joshuaclayton/dev/gems/factory_girl
specs: specs:
factory_girl (4.1.0) factory_girl (4.2.0)
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
GEM GEM

View File

@ -1,7 +1,7 @@
PATH PATH
remote: /Users/joshuaclayton/dev/gems/factory_girl remote: /Users/joshuaclayton/dev/gems/factory_girl
specs: specs:
factory_girl (4.1.0) factory_girl (4.2.0)
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
GEM GEM

View File

@ -1,7 +1,7 @@
PATH PATH
remote: /Users/joshuaclayton/dev/gems/factory_girl remote: /Users/joshuaclayton/dev/gems/factory_girl
specs: specs:
factory_girl (4.1.0) factory_girl (4.2.0)
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
GEM GEM

View File

@ -20,7 +20,7 @@ GIT
PATH PATH
remote: /Users/joshuaclayton/dev/gems/factory_girl remote: /Users/joshuaclayton/dev/gems/factory_girl
specs: specs:
factory_girl (4.1.0) factory_girl (4.2.0)
activesupport (>= 3.0.0) activesupport (>= 3.0.0)
GEM GEM

View File

@ -1,3 +1,3 @@
module FactoryGirl module FactoryGirl
VERSION = '4.1.0' VERSION = '4.2.0'
end end