From 3e1abf8774a5365e0fe475c819ba183d56103d5b Mon Sep 17 00:00:00 2001 From: Joe Haig Date: Sat, 30 Sep 2023 18:11:34 +0100 Subject: [PATCH] Prepare version 3.3.0 --- CHANGELOG.md | 12 +++++++++--- lib/amoeba/version.rb | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c229728..b42acae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/lib/amoeba/version.rb b/lib/amoeba/version.rb index 07a2c1f..698abb4 100644 --- a/lib/amoeba/version.rb +++ b/lib/amoeba/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Amoeba - VERSION = '3.2.0' + VERSION = '3.3.0' end