diff --git a/Gemfile.lock b/Gemfile.lock index bf37562..d1c37f9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_bot_rails (6.5.0) + factory_bot_rails (6.5.1) factory_bot (~> 6.5) railties (>= 6.1.0) diff --git a/NEWS.md b/NEWS.md index 1ce8c70..b7b63cb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,12 @@ there might not be any notable changes in new versions of this project. # NEWS +## 6.5.1 (September 5, 2025) + +* Add: Add AuthenticationGenerator for users factory creation (Rodrigo Toledo) +* Changed: Update required_ruby_version to require >= Ruby 3.1 (y-yagi) +* Internal: Fix Cucumber tests (Neil Carvalho) + ## 6.5.0 (June 13, 2025) * Add: First-party support for [`file_fixture`](https://api.rubyonrails.org/classes/ActiveSupport/Testing/FileFixtures.html#method-i-file_fixture) within factory blocks (Sean Doyle) diff --git a/lib/factory_bot_rails/version.rb b/lib/factory_bot_rails/version.rb index 938fc96..6059622 100644 --- a/lib/factory_bot_rails/version.rb +++ b/lib/factory_bot_rails/version.rb @@ -1,3 +1,3 @@ module FactoryBotRails - VERSION = "6.5.0".freeze + VERSION = "6.5.1".freeze end