From 460d5f5871e86f53662ae3da2bd4fbd9a2db3081 Mon Sep 17 00:00:00 2001 From: Joshua Clayton Date: Fri, 17 Oct 2014 16:51:07 -0400 Subject: [PATCH] Bump version to 4.5.0 --- Gemfile.lock | 2 +- NEWS | 7 +++++++ gemfiles/3.1.gemfile.lock | 2 +- gemfiles/3.2.gemfile.lock | 2 +- gemfiles/4.0.gemfile.lock | 2 +- gemfiles/4.1.gemfile.lock | 2 +- lib/factory_girl/version.rb | 2 +- 7 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0ba0b31..1308b92 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_girl (4.4.0) + factory_girl (4.5.0) activesupport (>= 3.0.0) GEM diff --git a/NEWS b/NEWS index 7a4ac0d..a6256c6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +4.5.0 (October 17, 2014) + Improve FactoryGirl.lint by including exception and message in output + Allow selective linting + Use more explicit #public_send when doing attribute assignment + Improve documentation around FactoryGirl.lint and initialize_with + Deprecate #ignore in favor of #transient + 4.4.0 (February 10, 2014) Add FactoryGirl.lint Fix memory leak in duplicate traits diff --git a/gemfiles/3.1.gemfile.lock b/gemfiles/3.1.gemfile.lock index 53ce0bf..88e1bd8 100644 --- a/gemfiles/3.1.gemfile.lock +++ b/gemfiles/3.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../ specs: - factory_girl (4.4.0) + factory_girl (4.5.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/3.2.gemfile.lock b/gemfiles/3.2.gemfile.lock index a888537..d591764 100644 --- a/gemfiles/3.2.gemfile.lock +++ b/gemfiles/3.2.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../ specs: - factory_girl (4.4.0) + factory_girl (4.5.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/4.0.gemfile.lock b/gemfiles/4.0.gemfile.lock index 59d7f6e..c17946e 100644 --- a/gemfiles/4.0.gemfile.lock +++ b/gemfiles/4.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../ specs: - factory_girl (4.4.0) + factory_girl (4.5.0) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/4.1.gemfile.lock b/gemfiles/4.1.gemfile.lock index 34d36a7..674b2a2 100644 --- a/gemfiles/4.1.gemfile.lock +++ b/gemfiles/4.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../ specs: - factory_girl (4.4.0) + factory_girl (4.5.0) activesupport (>= 3.0.0) GEM diff --git a/lib/factory_girl/version.rb b/lib/factory_girl/version.rb index 89ffcd9..b6d8366 100644 --- a/lib/factory_girl/version.rb +++ b/lib/factory_girl/version.rb @@ -1,3 +1,3 @@ module FactoryGirl - VERSION = '4.4.0' + VERSION = '4.5.0' end