From d07fa850f3aec96393db446ed1a533d005c73e57 Mon Sep 17 00:00:00 2001 From: Daniel Colson Date: Fri, 7 May 2021 12:03:26 -0400 Subject: [PATCH] Bump version to 6.2.0 [ci skip] --- Gemfile.lock | 4 ++-- NEWS.md | 6 ++++++ lib/factory_bot/version.rb | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 836deab..de37e98 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_bot (6.1.0) + factory_bot (6.2.0) activesupport (>= 5.0.0) GEM @@ -154,4 +154,4 @@ DEPENDENCIES yard BUNDLED WITH - 2.1.4 + 2.2.16 diff --git a/NEWS.md b/NEWS.md index c2fd2b4..3f2d34d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,11 @@ # News +## 6.2.0 (May 7, 2021) + * Added: support for Ruby 3.0 + * Changed: Include factory or trait name in error messages for missing traits. d05a9a3c + * Changed: Switched from Travis CI to GitHub Actions + * Fixed: More Ruby 2.7 kwarg deprecation warnings + ## 6.1.0 (July 8, 2020) * Added: public reader for the evaluation instance, helpful for building interrelated associations * Changed: raise a more helpful error when passing an invalid argument to an association diff --git a/lib/factory_bot/version.rb b/lib/factory_bot/version.rb index 8335ebe..3d893a4 100644 --- a/lib/factory_bot/version.rb +++ b/lib/factory_bot/version.rb @@ -1,3 +1,3 @@ module FactoryBot - VERSION = "6.1.0".freeze + VERSION = "6.2.0".freeze end