diff --git a/Gemfile.lock b/Gemfile.lock index 19499aa..05b4323 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (3.0.0) + factory_girl (3.1.0) activesupport (>= 3.0.0) GEM diff --git a/NEWS b/NEWS index d632042..b1e303b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +3.1.0 (April 6, 2012) + Sequences support aliases, which reference the same block + Update documentation + Add before_create callback + Support use of #attribute_names method to determine available attributes for steps + Use ActiveSupport::Deprecation for all deprecations + 3.0.0 (March 23, 2012) Deprecate the vintage syntax Remove Rails 2.x support diff --git a/gemfiles/3.0.gemfile.lock b/gemfiles/3.0.gemfile.lock index 93f5365..af1617a 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.0.0) + factory_girl (3.1.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.1.gemfile.lock b/gemfiles/3.1.gemfile.lock index f4be3c7..b374afc 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.0.0) + factory_girl (3.1.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.2.gemfile.lock b/gemfiles/3.2.gemfile.lock index 2f02f07..f03e276 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.0.0) + factory_girl (3.1.0) activesupport (>= 3.0.0) GEM diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index 309cdee..0272ff5 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,4 +1,4 @@ module FactoryGirl - VERSION = "3.0.0" + VERSION = "3.1.0" end