-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from jrmhaig/prepare_release
Prepare version 3.3.0
- Loading branch information
Showing
2 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
### Unreleased | ||
### 3.3.0 | ||
|
||
* Move test pipelines from Travis to Github Actions. | ||
* `include_field` and `exclude_field` configuration options have been removed. | ||
These had been marked as deprecated in version 2 and replaced by | ||
`include_association` and `exclude_association`. | ||
* Official support dropped for Rails 5.1 and earlier. | ||
* Official support dropped for Ruby 2.4 and earlier. | ||
* Official support dropped for Rails 5.1 and earlier. Test pipelines now run | ||
for Rails 5.2 up to 7.0 as well as the current development head. | ||
* Official support dropped for Ruby 2.4 and earlier. Test pipelines now run for | ||
Ruby 2.5 up to 3.2 as well as the current development head. | ||
* Ambiguous 'BSD' license replaced with 'BSD 2-Claus "Simplified" License'. | ||
* Fix copy-and-paste mistake in documenation. Thanks @budu. | ||
* Use lazy load hooks to extend ActiveRecord::Base. This is to ensure | ||
compatibility with Factory Bot Rails 6.4.0. Thanks @tagliala. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Amoeba | ||
VERSION = '3.2.0' | ||
VERSION = '3.3.0' | ||
end |