Skip to content

Commit b00d3c3

Browse files
committed
Release 6.4.4 [ci skip]
1 parent b5f45b9 commit b00d3c3

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
factory_bot_rails (6.4.3)
5-
factory_bot (~> 6.4)
4+
factory_bot_rails (6.4.4)
5+
factory_bot (~> 6.5)
66
railties (>= 5.0.0)
77

88
GEM

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ there might not be any notable changes in new versions of this project.
33

44
# NEWS
55

6+
## 6.4.4 (October 25, 2024)
7+
8+
* Changed: Bump Factory Bot 6.5.0
9+
610
## 6.4.3 (December 29, 2023)
711

812
* Changed: allow sequence definitions for ActiveRecord primary keys (Mike

RELEASING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
1. Update the version in the gemspec (and the factory\_bot version, if necessary)
44
and run `bundle install`
5-
1. Update `NEWS.md` to reflect the changes since last release.
6-
1. Commit changes.
5+
2. Update `NEWS.md` to reflect the changes since last release.
6+
3. Commit changes.
77
There shouldn't be code changes,
88
and thus CI doesn't need to run,
99
so you can add "[ci skip]" to the commit message.
10-
1. Tag the release: `git tag -s vVERSION`
10+
4. Tag the release: `git tag -s vVERSION`
1111
- We recommend the [_quick guide on how to sign a release_] from git ready.
12-
1. Push changes: `git push && git push --tags`
13-
1. Build and publish:
12+
5. Push changes: `git push && git push --tags`
13+
6. Build and publish:
1414
```bash
1515
gem build factory_bot_rails.gemspec
1616
gem push factory_bot_rails-VERSION.gem
1717
```
18-
1. Add a new GitHub release using the recent `NEWS.md` as the content. Sample
18+
7. Add a new GitHub release using the recent `NEWS.md` as the content. Sample
1919
URL: https://github.com/thoughtbot/factory_bot_rails/releases/new?tag=vVERSION
20-
1. Announce the new release,
20+
8. Announce the new release,
2121
making sure to say "thank you" to the contributors
2222
who helped shape this version!
2323

factory_bot_rails.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "factory_bot_rails"
3-
s.version = "6.4.3"
3+
s.version = "6.4.4"
44
s.authors = ["Joe Ferris"]
55
s.email = "[email protected]"
66
s.homepage = "https://github.com/thoughtbot/factory_bot_rails"
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
1515
s.executables = []
1616
s.license = "MIT"
1717

18-
s.add_runtime_dependency("factory_bot", "~> 6.4")
18+
s.add_runtime_dependency("factory_bot", "~> 6.5")
1919
s.add_runtime_dependency("railties", ">= 5.0.0")
2020

2121
s.add_development_dependency("sqlite3")

0 commit comments

Comments
 (0)