From c7c5cbd5db8131663ef3a1b56ddf2c60bb4caf0f Mon Sep 17 00:00:00 2001 From: Joshua Clayton Date: Mon, 11 Jun 2012 08:11:42 -0400 Subject: [PATCH] Bump version to 3.4.0 --- Gemfile.lock | 2 +- NEWS | 6 ++++++ gemfiles/3.0.gemfile.lock | 2 +- gemfiles/3.1.gemfile.lock | 2 +- gemfiles/3.2.gemfile.lock | 2 +- lib/factory_girl/version.rb | 2 +- 6 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index f6d321e41..7a07f8b4c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (3.3.0) + factory_girl (3.4.0) activesupport (>= 3.0.0) GEM diff --git a/NEWS b/NEWS index 887ccf709..8bd65b987 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +3.4.0 (June 11, 2012) + Sequences support Enumerators + Optionally disable duplicate assignment of attributes in initialize_with + Make hash of public attributes available in initialize_with + Support referring to a factory based on class name + 3.3.0 (May 13, 2012) Allow to_create, skip_create, and initialize_with to be defined globally Allow to_create, skip_create, and initialize_with to be defined within traits diff --git a/gemfiles/3.0.gemfile.lock b/gemfiles/3.0.gemfile.lock index e31f1dbc7..3ceead2ef 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 (3.3.0) + factory_girl (3.4.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.1.gemfile.lock b/gemfiles/3.1.gemfile.lock index fa1b946fd..e75dfdc4c 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 (3.3.0) + factory_girl (3.4.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.2.gemfile.lock b/gemfiles/3.2.gemfile.lock index c6d90bf06..e7f7eb727 100644 --- a/gemfiles/3.2.gemfile.lock +++ b/gemfiles/3.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: /Users/joshuaclayton/dev/gems/factory_girl specs: - factory_girl (3.3.0) + factory_girl (3.4.0) activesupport (>= 3.0.0) GEM diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index 5e92a5a9d..66a644f8a 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,3 +1,3 @@ module FactoryGirl - VERSION = '3.3.0' + VERSION = '3.4.0' end