From 85d47353613e89a34a37e6b254033090e1c22312 Mon Sep 17 00:00:00 2001 From: Joshua Clayton Date: Fri, 18 Nov 2011 17:12:02 -0500 Subject: [PATCH] Bump version to 2.3.0 --- Changelog | 13 +++++++++++++ Gemfile.lock | 2 +- gemfiles/2.1.gemfile.lock | 2 +- gemfiles/2.3.gemfile.lock | 2 +- gemfiles/3.0.gemfile.lock | 2 +- gemfiles/3.1.gemfile.lock | 2 +- lib/factory_girl/version.rb | 2 +- 7 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Changelog b/Changelog index 69b1e4a65..1c20d0d04 100644 --- a/Changelog +++ b/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) Clean up RSpec suite to not use 'should' Use create_list in step definitions diff --git a/Gemfile.lock b/Gemfile.lock index a304b667f..0f222191b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (2.2.0) + factory_girl (2.3.0) activesupport GEM diff --git a/gemfiles/2.1.gemfile.lock b/gemfiles/2.1.gemfile.lock index 653adc4ad..f2866101b 100644 --- a/gemfiles/2.1.gemfile.lock +++ b/gemfiles/2.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: /Users/joshuaclayton/dev/gems/factory_girl specs: - factory_girl (2.2.0) + factory_girl (2.3.0) activesupport GEM diff --git a/gemfiles/2.3.gemfile.lock b/gemfiles/2.3.gemfile.lock index ba5df62ff..cbdf85e1f 100644 --- a/gemfiles/2.3.gemfile.lock +++ b/gemfiles/2.3.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: /Users/joshuaclayton/dev/gems/factory_girl specs: - factory_girl (2.2.0) + factory_girl (2.3.0) activesupport GEM diff --git a/gemfiles/3.0.gemfile.lock b/gemfiles/3.0.gemfile.lock index 7660339b0..65b470534 100644 --- a/gemfiles/3.0.gemfile.lock +++ b/gemfiles/3.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: /Users/joshuaclayton/dev/gems/factory_girl specs: - factory_girl (2.2.0) + factory_girl (2.3.0) activesupport GEM diff --git a/gemfiles/3.1.gemfile.lock b/gemfiles/3.1.gemfile.lock index fb9aeb051..3a45162e0 100644 --- a/gemfiles/3.1.gemfile.lock +++ b/gemfiles/3.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: /Users/joshuaclayton/dev/gems/factory_girl specs: - factory_girl (2.2.0) + factory_girl (2.3.0) activesupport GEM diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index 5e9067067..e723868cd 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,4 +1,4 @@ module FactoryGirl - VERSION = "2.2.0" + VERSION = "2.3.0" end