From a4bba068cce7858c74f071a0bc9b3b730455e691 Mon Sep 17 00:00:00 2001 From: Daniel Colson Date: Sun, 26 Apr 2020 12:10:59 -0400 Subject: [PATCH] Bump version to 5.2.0 [ci skip] --- Gemfile.lock | 8 ++++---- NEWS.md | 3 +++ factory_bot_rails.gemspec | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 64ae7ff..6da757c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,8 @@ PATH remote: . specs: - factory_bot_rails (5.1.1) - factory_bot (~> 5.1.0) + factory_bot_rails (5.2.0) + factory_bot (~> 5.2.0) railties (>= 4.2.0) GEM @@ -72,7 +72,7 @@ GEM diff-lcs (1.3) erubi (1.8.0) execjs (2.7.0) - factory_bot (5.1.1) + factory_bot (5.2.0) activesupport (>= 4.2.0) ffi (1.10.0) ffi (1.10.0-java) @@ -183,4 +183,4 @@ DEPENDENCIES uglifier BUNDLED WITH - 2.0.2 + 2.1.4 diff --git a/NEWS.md b/NEWS.md index 04933b1..951ae4d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,9 @@ there might not be any notable changes in new versions of this project. # NEWS +## 5.2.0 (April 26, 2020) +* Changed: factory_bot dependency to ~> 5.2.0 + ## 5.1.1 (September 24, 2019) * Fixed: Ensure definitions do not load before I18n is initialized diff --git a/factory_bot_rails.gemspec b/factory_bot_rails.gemspec index 646381e..3a84741 100644 --- a/factory_bot_rails.gemspec +++ b/factory_bot_rails.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "factory_bot_rails" - s.version = "5.1.1" + s.version = "5.2.0" s.authors = ["Joe Ferris"] s.email = "jferris@thoughtbot.com" s.homepage = "https://github.com/thoughtbot/factory_bot_rails" @@ -14,6 +14,6 @@ Gem::Specification.new do |s| s.executables = [] s.license = "MIT" - s.add_runtime_dependency("factory_bot", "~> 5.1.0") + s.add_runtime_dependency("factory_bot", "~> 5.2.0") s.add_runtime_dependency("railties", ">= 4.2.0") end