Skip to content
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

Release 6.4.4 [ci skip] #503

Merged
merged 1 commit into from
Oct 25, 2024
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
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

Expand Down
4 changes: 2 additions & 2 deletions factory_bot_rails.gemspec
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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")
Expand Down