From 438d035f8e77f52e43fd121cd7568e555c3a4ff5 Mon Sep 17 00:00:00 2001 From: Mike Burns Date: Fri, 17 Nov 2023 13:41:55 -0500 Subject: [PATCH] Bump to 6.3.0 [ci skip] * Changed: reject sequence definitions for ActiveRecord primary keys (Sean Doyle). * Changed: factory\_bot dependency to ~> 6.4 (Mike Burns). * Changed: upgrade dependencies (Daniel Colson). * Add: `projections.json` for Rails.vim (Caleb Hearth). * Docs: fix broken link (Edu Depetris). * Docs: mention Rails generator in docs (Edu Depetris). * Docs: fix typo (Yudai Takada). * Internal: skip Spring version 2.1.1 due to a bug in that release (Christina Entcheva, Daniel Colson). * Internal: test against Rails 6.1 (Antonis Berkakis). * Internal: test against Ruby 3 (Daniel Colson). * Internal: fewer warnings in Cucumber tests (Daniel Colson). * Internal: use GitHub Actions for CI (Mathieu Jobin). * Internal: a whole bunch of cleanup (Daniel Colson). * Internal: fix CI due to a Bundler output change (Mike Burns). --- Gemfile.lock | 2 +- NEWS.md | 19 +++++++++++++++++++ factory_bot_rails.gemspec | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index d4db5ee..0c07574 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - factory_bot_rails (6.2.0) + factory_bot_rails (6.3.0) factory_bot (~> 6.4) railties (>= 5.0.0) diff --git a/NEWS.md b/NEWS.md index 0252b7e..57b0468 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,25 @@ there might not be any notable changes in new versions of this project. # NEWS +## 6.3.0 (November 17, 2023) + +* Changed: reject sequence definitions for ActiveRecord primary keys (Sean + Doyle). +* Changed: factory\_bot dependency to ~> 6.4 (Mike Burns). +* Changed: upgrade dependencies (Daniel Colson). +* Add: `projections.json` for Rails.vim (Caleb Hearth). +* Docs: fix broken link (Edu Depetris). +* Docs: mention Rails generator in docs (Edu Depetris). +* Docs: fix typo (Yudai Takada). +* Internal: skip Spring version 2.1.1 due to a bug in that release (Christina + Entcheva, Daniel Colson). +* Internal: test against Rails 6.1 (Antonis Berkakis). +* Internal: test against Ruby 3 (Daniel Colson). +* Internal: fewer warnings in Cucumber tests (Daniel Colson). +* Internal: use GitHub Actions for CI (Mathieu Jobin). +* Internal: a whole bunch of cleanup (Daniel Colson). +* Internal: fix CI due to a Bundler output change (Mike Burns). + ## 6.2.0 (May 7, 2021) * Changed: factory\_bot dependency to ~> 6.2.0 diff --git a/factory_bot_rails.gemspec b/factory_bot_rails.gemspec index b295d29..5932226 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.2.0" + s.version = "6.3.0" s.authors = ["Joe Ferris"] s.email = "jferris@thoughtbot.com" s.homepage = "https://github.com/thoughtbot/factory_bot_rails"