From a648ce66e57481d9275bfaa7c434d624225bebbf Mon Sep 17 00:00:00 2001 From: Neil Carvalho Date: Fri, 13 Jun 2025 07:27:24 -0300 Subject: [PATCH] Bump to 6.5.0 --- Gemfile.lock | 2 +- NEWS.md | 12 ++++++++++-- RELEASING.md | 4 +++- lib/factory_bot_rails/version.rb | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 87fa183..b6415c1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_bot_rails (6.4.4) + factory_bot_rails (6.5.0) factory_bot (~> 6.5) railties (>= 6.1.0) diff --git a/NEWS.md b/NEWS.md index 0d3d1eb..1ce8c70 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,10 +3,18 @@ there might not be any notable changes in new versions of this project. # NEWS -* Add: First-party support for [`file_fixture`](https://api.rubyonrails.org/classes/ActiveSupport/Testing/FileFixtures.html#method-i-file_fixture) within factory blocks -* Internal: Add Rails 8.0 to the test matrix +## 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) +* Changed: Drop support for Ruby 3.0 (Fernando Perales) +* Changed: Add required Ruby version to the gemspec (Christoph Lipautz) +* Internal: Add Rails 7.2 to the test matrix (Raj Kumar) +* Internal: Add Rails 8.0 to the test matrix (James O'Neill) +* Internal: Run `standardrb` on CI runs (Christoph Lipautz) + ## 6.4.4 (October 25, 2024) + * Changed: Bump Factory Bot 6.5.0 ## 6.4.3 (December 29, 2023) diff --git a/RELEASING.md b/RELEASING.md index 4ec0825..b964bb5 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -2,7 +2,9 @@ 1. Update the version in the gemspec (and the factory\_bot version, if necessary) and run `bundle install` -2. Update `NEWS.md` to reflect the changes since last release. +1. Update `NEWS.md` to reflect the changes since last release. + A useful GitHub URL to compare the changes is: + https://github.com/thoughtbot/factory_bot_rails/compare/vLAST_VERSION...main 3. Commit changes. There shouldn't be code changes, and thus CI doesn't need to run, diff --git a/lib/factory_bot_rails/version.rb b/lib/factory_bot_rails/version.rb index 58aad44..938fc96 100644 --- a/lib/factory_bot_rails/version.rb +++ b/lib/factory_bot_rails/version.rb @@ -1,3 +1,3 @@ module FactoryBotRails - VERSION = "6.4.4".freeze + VERSION = "6.5.0".freeze end