1
0
Fork 0
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:
Joshua Clayton 2011-11-18 17:12:02 -05:00
parent 442ba18f14
commit 85d4735361
7 changed files with 19 additions and 6 deletions

View file

@ -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

View file

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
factory_girl (2.2.0) factory_girl (2.3.0)
activesupport activesupport
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 (2.2.0) factory_girl (2.3.0)
activesupport activesupport
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 (2.2.0) factory_girl (2.3.0)
activesupport activesupport
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 (2.2.0) factory_girl (2.3.0)
activesupport activesupport
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 (2.2.0) factory_girl (2.3.0)
activesupport activesupport
GEM GEM

View file

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