From f87724915420ee3653218004d3f0e34dcf3b934a Mon Sep 17 00:00:00 2001 From: Silumesii Maboshe Date: Fri, 4 Oct 2024 10:27:02 +0200 Subject: [PATCH 1/3] Update Bundler to v2.5.21 https://github.com/rubygems/rubygems/releases/tag/bundler-v2.5.21 --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 4df2ba8..ed7ed8e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -238,4 +238,4 @@ DEPENDENCIES standard BUNDLED WITH - 2.4.12 + 2.5.21 From b5f45b91c20b3c0da23fa8a89299bccaf6f1aae7 Mon Sep 17 00:00:00 2001 From: Silumesii Maboshe Date: Thu, 17 Oct 2024 06:11:39 +0200 Subject: [PATCH 2/3] Update Bundler to v2.5.22 https://github.com/rubygems/rubygems/releases/tag/bundler-v2.5.22 --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index ed7ed8e..46a0b74 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -238,4 +238,4 @@ DEPENDENCIES standard BUNDLED WITH - 2.5.21 + 2.5.22 From e62adb910394c5b701059ea7c86c625be176688c Mon Sep 17 00:00:00 2001 From: Silumesii Maboshe <72755+smaboshe@users.noreply.github.com> Date: Fri, 25 Oct 2024 13:52:33 +0200 Subject: [PATCH 3/3] Release 6.4.4 [ci skip] (#503) --- Gemfile.lock | 4 ++-- NEWS.md | 4 ++++ RELEASING.md | 14 +++++++------- factory_bot_rails.gemspec | 4 ++-- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 46a0b74..c34e75f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,8 +1,8 @@ PATH remote: . specs: - factory_bot_rails (6.4.3) - factory_bot (~> 6.4) + factory_bot_rails (6.4.4) + factory_bot (~> 6.5) railties (>= 5.0.0) GEM diff --git a/NEWS.md b/NEWS.md index 8235505..dfc1ebb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,10 @@ there might not be any notable changes in new versions of this project. # NEWS +## 6.4.4 (October 25, 2024) + +* Changed: Bump Factory Bot 6.5.0 + ## 6.4.3 (December 29, 2023) * Changed: allow sequence definitions for ActiveRecord primary keys (Mike diff --git a/RELEASING.md b/RELEASING.md index 9ade6b3..4ec0825 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -2,22 +2,22 @@ 1. Update the version in the gemspec (and the factory\_bot version, if necessary) and run `bundle install` -1. Update `NEWS.md` to reflect the changes since last release. -1. Commit changes. +2. Update `NEWS.md` to reflect the changes since last release. +3. Commit changes. There shouldn't be code changes, and thus CI doesn't need to run, so you can add "[ci skip]" to the commit message. -1. Tag the release: `git tag -s vVERSION` +4. Tag the release: `git tag -s vVERSION` - We recommend the [_quick guide on how to sign a release_] from git ready. -1. Push changes: `git push && git push --tags` -1. Build and publish: +5. Push changes: `git push && git push --tags` +6. Build and publish: ```bash gem build factory_bot_rails.gemspec gem push factory_bot_rails-VERSION.gem ``` -1. Add a new GitHub release using the recent `NEWS.md` as the content. Sample +7. Add a new GitHub release using the recent `NEWS.md` as the content. Sample URL: https://github.com/thoughtbot/factory_bot_rails/releases/new?tag=vVERSION -1. Announce the new release, +8. Announce the new release, making sure to say "thank you" to the contributors who helped shape this version! diff --git a/factory_bot_rails.gemspec b/factory_bot_rails.gemspec index 04c17e9..3538edc 100644 --- a/factory_bot_rails.gemspec +++ b/factory_bot_rails.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "factory_bot_rails" - s.version = "6.4.3" + s.version = "6.4.4" s.authors = ["Joe Ferris"] s.email = "jferris@thoughtbot.com" s.homepage = "https://github.com/thoughtbot/factory_bot_rails" @@ -15,7 +15,7 @@ Gem::Specification.new do |s| s.executables = [] s.license = "MIT" - s.add_runtime_dependency("factory_bot", "~> 6.4") + s.add_runtime_dependency("factory_bot", "~> 6.5") s.add_runtime_dependency("railties", ">= 5.0.0") s.add_development_dependency("sqlite3")