Skip to content

Commit

Permalink
Bump version to 6.1.0 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
composerinteralia committed Jul 8, 2020
1 parent ebc4cd5 commit 781eba9
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
factory_bot (6.0.2)
factory_bot (6.1.0)
activesupport (>= 5.0.0)

GEM
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# News

## 6.1.0 (July 8, 2020)
* Added: public reader for the evaluation instance, helpful for building interrelated associations
* Changed: raise a more helpful error when passing an invalid argument to an association
* Fixed: Ruby 2.7 kwarg deprecation warnings

## 6.0.2 (June 19, 2020)
* Fixed: bug causing traits to consume more memory each time they were used

Expand All @@ -8,6 +13,9 @@

## 6.0.0 (June 18, 2020)
* Added: automatic definition of traits for Active Record enum attributes, enabled by default
(Note that this required changing where factory_bot constantizes the build
class, which may affect applications that were using abstract factories for
inheritance. See issue #1409.)
* 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
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/5.0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
factory_bot (6.0.2)
factory_bot (6.1.0)
activesupport (>= 5.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/5.1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
factory_bot (6.0.2)
factory_bot (6.1.0)
activesupport (>= 5.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/5.2.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
factory_bot (6.0.2)
factory_bot (6.1.0)
activesupport (>= 5.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/6.0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
factory_bot (6.0.2)
factory_bot (6.1.0)
activesupport (>= 5.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/factory_bot/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module FactoryBot
VERSION = "6.0.2".freeze
VERSION = "6.1.0".freeze
end

0 comments on commit 781eba9

Please sign in to comment.