Bump version to v6.0.0 [ci skip]

This commit is contained in:
Daniel Colson 2020-06-18 20:46:51 -04:00
parent 69ec70b2de
commit aecc8a87ee
No known key found for this signature in database
GPG Key ID: 88A364BBE77B1353
8 changed files with 15 additions and 7 deletions

View File

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
factory_bot (5.2.0) factory_bot (6.0.0)
activesupport (>= 5.0.0) activesupport (>= 5.0.0)
GEM GEM

View File

@ -1,5 +1,12 @@
# News # News
## 6.0.0 (June 18, 2020)
* Added: automatic definition of traits for Active Record enum attributes, enabled by default
* Added: `traits_for_enum` method to define traits for non-Active Record enums
* Added: `build_stubbed_starting_id=` option to define the starting id for `build_stubbed`
* Removed: deprecated methods on the top-level `FactoryBot` module meant only for internal use
* Removed: support for EOL versions of Ruby (2.3, 2.4) and Rails (4.2)
## 5.2.0 (April 24, 2020) ## 5.2.0 (April 24, 2020)
* Added: Pass index to block for `*_list` methods * Added: Pass index to block for `*_list` methods
* Deprecated: methods on the top-level `FactoryBot` module meant only for internal use: `callbacks`, `configuration`, `constructor`, `initialize_with`, `register_sequence`, `resent_configuration`, `skip_create`, `to_create` * Deprecated: methods on the top-level `FactoryBot` module meant only for internal use: `callbacks`, `configuration`, `constructor`, `initialize_with`, `register_sequence`, `resent_configuration`, `skip_create`, `to_create`

View File

@ -1,7 +1,8 @@
# Releasing # Releasing
1. Update version file accordingly and run `bundle install` to update the 1. Update version file accordingly and run `bundle install` to update the
Gemfile.lock. Gemfile.lock and `bundle exec appraisal install` to update the Appraisal
gemfile.lock files.
1. Update `NEWS.md` to reflect the changes since last release. 1. Update `NEWS.md` to reflect the changes since last release.
1. Commit changes. 1. Commit changes.
There shouldn't be code changes, There shouldn't be code changes,

View File

@ -1,7 +1,7 @@
PATH PATH
remote: .. remote: ..
specs: specs:
factory_bot (5.2.0) factory_bot (6.0.0)
activesupport (>= 5.0.0) activesupport (>= 5.0.0)
GEM GEM

View File

@ -1,7 +1,7 @@
PATH PATH
remote: .. remote: ..
specs: specs:
factory_bot (5.2.0) factory_bot (6.0.0)
activesupport (>= 5.0.0) activesupport (>= 5.0.0)
GEM GEM

View File

@ -1,7 +1,7 @@
PATH PATH
remote: .. remote: ..
specs: specs:
factory_bot (5.2.0) factory_bot (6.0.0)
activesupport (>= 5.0.0) activesupport (>= 5.0.0)
GEM GEM

View File

@ -1,7 +1,7 @@
PATH PATH
remote: .. remote: ..
specs: specs:
factory_bot (5.2.0) factory_bot (6.0.0)
activesupport (>= 5.0.0) activesupport (>= 5.0.0)
GEM GEM

View File

@ -1,3 +1,3 @@
module FactoryBot module FactoryBot
VERSION = "5.2.0".freeze VERSION = "6.0.0".freeze
end end