mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
Bump version to 2.3.0
This commit is contained in:
parent
442ba18f14
commit
85d4735361
7 changed files with 19 additions and 6 deletions
13
Changelog
13
Changelog
|
@ -1,3 +1,16 @@
|
||||||
|
2.3.0 (November 18, 2011)
|
||||||
|
Registries are named, resulting in better messages when factories, traits,
|
||||||
|
or sequences cannot be found
|
||||||
|
Fix incorrect tests
|
||||||
|
Internals refactoring introducing FactoryGirl::NullFactory,
|
||||||
|
FactoryGirl::Definition, and FactoryGirl::DeclarationList
|
||||||
|
Use ActiveSupport for Hash#except and its delegation capabilities
|
||||||
|
Fix usage of callbacks when added via implicit traits
|
||||||
|
Use Bundler tasks and clean up dependencies
|
||||||
|
Fix failing spec for big letters in factory name passed as symbol
|
||||||
|
Add ability for traits to be added dynamically when creating an instance via
|
||||||
|
build, create, build_stubbed, or attributes_for
|
||||||
|
|
||||||
2.2.0 (October 14, 2011)
|
2.2.0 (October 14, 2011)
|
||||||
Clean up RSpec suite to not use 'should'
|
Clean up RSpec suite to not use 'should'
|
||||||
Use create_list in step definitions
|
Use create_list in step definitions
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
factory_girl (2.2.0)
|
factory_girl (2.3.0)
|
||||||
activesupport
|
activesupport
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||||
specs:
|
specs:
|
||||||
factory_girl (2.2.0)
|
factory_girl (2.3.0)
|
||||||
activesupport
|
activesupport
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||||
specs:
|
specs:
|
||||||
factory_girl (2.2.0)
|
factory_girl (2.3.0)
|
||||||
activesupport
|
activesupport
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||||
specs:
|
specs:
|
||||||
factory_girl (2.2.0)
|
factory_girl (2.3.0)
|
||||||
activesupport
|
activesupport
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||||
specs:
|
specs:
|
||||||
factory_girl (2.2.0)
|
factory_girl (2.3.0)
|
||||||
activesupport
|
activesupport
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module FactoryGirl
|
module FactoryGirl
|
||||||
VERSION = "2.2.0"
|
VERSION = "2.3.0"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue