diff --git a/Gemfile.lock b/Gemfile.lock index ee5fe7a..164faa6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (4.7.0) + factory_girl (4.8.0) activesupport (>= 3.0.0) GEM @@ -120,4 +120,4 @@ DEPENDENCIES yard BUNDLED WITH - 1.12.5 + 1.13.6 diff --git a/NEWS b/NEWS index 6683d21..63bf613 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +4.8.0 (December 16, 2016) + Improve documentation + Add `FactoryGirl.generate_list` to be consistent with `build_list`/`create_list` and friends + Add `FactoryGirl.use_parent_strategy` configuration to allow associations to leverage parent build strategy + 4.7.0 (April 1, 2016) Improve documentation Improve instrumentation payload to include traits, overrides, and the factory itself diff --git a/gemfiles/3.2.gemfile.lock b/gemfiles/3.2.gemfile.lock index 6191428..10d2d92 100644 --- a/gemfiles/3.2.gemfile.lock +++ b/gemfiles/3.2.gemfile.lock @@ -18,7 +18,7 @@ GIT PATH remote: ../ specs: - factory_girl (4.7.0) + factory_girl (4.8.0) activesupport (>= 3.0.0) GEM @@ -109,4 +109,4 @@ DEPENDENCIES yard BUNDLED WITH - 1.12.5 + 1.13.6 diff --git a/gemfiles/4.0.gemfile.lock b/gemfiles/4.0.gemfile.lock index c814092..53c6b18 100644 --- a/gemfiles/4.0.gemfile.lock +++ b/gemfiles/4.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../ specs: - factory_girl (4.7.0) + factory_girl (4.8.0) activesupport (>= 3.0.0) GEM @@ -109,4 +109,4 @@ DEPENDENCIES yard BUNDLED WITH - 1.12.5 + 1.13.6 diff --git a/gemfiles/4.1.gemfile.lock b/gemfiles/4.1.gemfile.lock index b1e343d..b16fe99 100644 --- a/gemfiles/4.1.gemfile.lock +++ b/gemfiles/4.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../ specs: - factory_girl (4.7.0) + factory_girl (4.8.0) activesupport (>= 3.0.0) GEM @@ -108,4 +108,4 @@ DEPENDENCIES yard BUNDLED WITH - 1.12.5 + 1.13.6 diff --git a/gemfiles/4.2.gemfile.lock b/gemfiles/4.2.gemfile.lock index 93fb4ad..2508372 100644 --- a/gemfiles/4.2.gemfile.lock +++ b/gemfiles/4.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../ specs: - factory_girl (4.7.0) + factory_girl (4.8.0) activesupport (>= 3.0.0) GEM @@ -108,4 +108,4 @@ DEPENDENCIES yard BUNDLED WITH - 1.12.5 + 1.13.6 diff --git a/gemfiles/5.0.gemfile.lock b/gemfiles/5.0.gemfile.lock index 6275933..ebec099 100644 --- a/gemfiles/5.0.gemfile.lock +++ b/gemfiles/5.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../ specs: - factory_girl (4.7.0) + factory_girl (4.8.0) activesupport (>= 3.0.0) GEM @@ -107,4 +107,4 @@ DEPENDENCIES yard BUNDLED WITH - 1.12.5 + 1.13.6 diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index 4df2773..6c3700a 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,3 +1,3 @@ module FactoryGirl - VERSION = '4.7.0'.freeze + VERSION = '4.8.0'.freeze end