From e4a49ce5849dfd7b82655eb57bee56529c1626a6 Mon Sep 17 00:00:00 2001 From: Daniel Colson Date: Fri, 22 Feb 2019 16:18:39 -0500 Subject: [PATCH] Bump version to 5.0.2 [ci skip] --- Gemfile.lock | 2 +- NEWS.md | 5 ++++- gemfiles/4.2.gemfile.lock | 2 +- gemfiles/5.0.gemfile.lock | 2 +- gemfiles/5.1.gemfile.lock | 2 +- gemfiles/5.2.gemfile.lock | 2 +- gemfiles/6.0.gemfile.lock | 2 +- lib/factory_bot/version.rb | 2 +- 8 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 008ffcf..391c147 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_bot (5.0.1) + factory_bot (5.0.2) activesupport (>= 4.2.0) GEM diff --git a/NEWS.md b/NEWS.md index 03188c2..31b587b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,10 +1,13 @@ # News +## 5.0.2 (February 22, 2019) + * Bugfix: raise "Trait not registered" error when passing invalid trait arguments + ## 5.0.1 (February 15, 2019) * Bugfix: Do not raise error when two sequences have the same name in two traits that have the same name -## 5.0.0 +## 5.0.0 (February 1, 2019) * Added: Verbose option to include full backtraces in the linting output * Changed: use_parent_strategy now defaults to true, so by default the build strategy will build, rather than create associations diff --git a/gemfiles/4.2.gemfile.lock b/gemfiles/4.2.gemfile.lock index 2574dc6..9729321 100644 --- a/gemfiles/4.2.gemfile.lock +++ b/gemfiles/4.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - factory_bot (5.0.0) + factory_bot (5.0.2) activesupport (>= 4.2.0) GEM diff --git a/gemfiles/5.0.gemfile.lock b/gemfiles/5.0.gemfile.lock index 12ecb99..3843946 100644 --- a/gemfiles/5.0.gemfile.lock +++ b/gemfiles/5.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - factory_bot (5.0.0) + factory_bot (5.0.2) activesupport (>= 4.2.0) GEM diff --git a/gemfiles/5.1.gemfile.lock b/gemfiles/5.1.gemfile.lock index 3abf8f5..1bbb4ce 100644 --- a/gemfiles/5.1.gemfile.lock +++ b/gemfiles/5.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - factory_bot (5.0.0) + factory_bot (5.0.2) activesupport (>= 4.2.0) GEM diff --git a/gemfiles/5.2.gemfile.lock b/gemfiles/5.2.gemfile.lock index f1681e1..96fa927 100644 --- a/gemfiles/5.2.gemfile.lock +++ b/gemfiles/5.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - factory_bot (5.0.0) + factory_bot (5.0.2) activesupport (>= 4.2.0) GEM diff --git a/gemfiles/6.0.gemfile.lock b/gemfiles/6.0.gemfile.lock index 27a8de8..40fca07 100644 --- a/gemfiles/6.0.gemfile.lock +++ b/gemfiles/6.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - factory_bot (5.0.0) + factory_bot (5.0.2) activesupport (>= 4.2.0) GEM diff --git a/lib/factory_bot/version.rb b/lib/factory_bot/version.rb index 9f2ebd2..b75ff3a 100644 --- a/lib/factory_bot/version.rb +++ b/lib/factory_bot/version.rb @@ -1,3 +1,3 @@ module FactoryBot - VERSION = "5.0.1".freeze + VERSION = "5.0.2".freeze end