diff --git a/Changelog b/Changelog index a0f45104f..027746ecc 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,7 @@ +2.4.1 (January 17, 2012) + Deprecate build_stubbed and attributes_for + Fix inline traits + 2.4.0 (January 13, 2012) Refactor internals of Factory Girl to use anonymous class on which attributes get defined diff --git a/Gemfile.lock b/Gemfile.lock index 8ffcb3c88..86ad03334 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (2.4.0) + factory_girl (2.4.1) activesupport GEM diff --git a/gemfiles/2.1.gemfile.lock b/gemfiles/2.1.gemfile.lock index aff7ed43f..6a4e56611 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.4.0) + factory_girl (2.4.1) activesupport GEM diff --git a/gemfiles/2.3.gemfile.lock b/gemfiles/2.3.gemfile.lock index a00787ae2..7891f2648 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.4.0) + factory_girl (2.4.1) activesupport GEM diff --git a/gemfiles/3.0.gemfile.lock b/gemfiles/3.0.gemfile.lock index ab6aeb134..702dadf07 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.4.0) + factory_girl (2.4.1) activesupport GEM diff --git a/gemfiles/3.1.gemfile.lock b/gemfiles/3.1.gemfile.lock index 590393355..0ca0a4d02 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.4.0) + factory_girl (2.4.1) activesupport GEM diff --git a/gemfiles/3.2.gemfile.lock b/gemfiles/3.2.gemfile.lock index bba21aa45..bc1759c6d 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 (2.4.0) + factory_girl (2.4.1) activesupport GEM diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index a77eb7c05..e15182003 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,4 +1,4 @@ module FactoryGirl - VERSION = "2.4.0" + VERSION = "2.4.1" end