diff --git a/Gemfile.lock b/Gemfile.lock index a1a949df..df05013e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_bot (6.2.0) + factory_bot (6.2.1) activesupport (>= 5.0.0) GEM @@ -154,4 +154,4 @@ DEPENDENCIES yard BUNDLED WITH - 2.2.16 + 2.3.5 diff --git a/NEWS.md b/NEWS.md index 3f2d34dc..ef4b73ea 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,11 @@ # News +## 6.2.1 (March 8, 2022) + * Added: CI testing against truffleruby + * Changed: Documentation improvements for sequences and traits + * Fixed: ActiveSupport::Notifications reporting strategy through associations now report as symbols + * Fixed: `add_attribute` with reserved keywords assigns values correctly + ## 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 diff --git a/lib/factory_bot/version.rb b/lib/factory_bot/version.rb index 3d893a46..239601e0 100644 --- a/lib/factory_bot/version.rb +++ b/lib/factory_bot/version.rb @@ -1,3 +1,3 @@ module FactoryBot - VERSION = "6.2.0".freeze + VERSION = "6.2.1".freeze end