diff --git a/Gemfile.lock b/Gemfile.lock index 70ca35b66..d0b2fbc13 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (4.0.0) + factory_girl (4.1.0) activesupport (>= 3.0.0) GEM diff --git a/NEWS b/NEWS index 024481d80..7f8bb1458 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +4.1.0 (September 11, 2012) + Allow multiple callbacks to bind to the same block + Fix documentation surrounding the stub strategy + 4.0.0 (August 3, 2012) Remove deprecated cucumber_steps Remove deprecated alternate syntaxes diff --git a/gemfiles/3.0.gemfile.lock b/gemfiles/3.0.gemfile.lock index 9189ae694..11a8e65c3 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 (4.0.0) + factory_girl (4.1.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.1.gemfile.lock b/gemfiles/3.1.gemfile.lock index bc725a508..a0d560413 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 (4.0.0) + factory_girl (4.1.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.2.gemfile.lock b/gemfiles/3.2.gemfile.lock index 5332bcfc6..a401ec520 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 (4.0.0) + factory_girl (4.1.0) activesupport (>= 3.0.0) GEM diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index 6948ed3fb..83a453a46 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,3 +1,3 @@ module FactoryGirl - VERSION = '4.0.0' + VERSION = '4.1.0' end