Skip to content

Bump to 6.5.0 #535

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
12 changes: 10 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 3 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion lib/factory_bot_rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module FactoryBotRails
VERSION = "6.4.4".freeze
VERSION = "6.5.0".freeze
end
Loading