From fa9740bf8458e0f24ce52b8a2d851ad667c41f9f Mon Sep 17 00:00:00 2001 From: Daniel Morrison Date: Tue, 2 Apr 2024 09:14:31 -0700 Subject: [PATCH] Bump version to 5.5.0 and update README --- CHANGELOG.md | 6 ++++++ README.md | 3 ++- lib/audited/version.rb | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 993a2383..15dbdccb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Audited ChangeLog +### 5.5.0 (2024-04-02) + +- Removed support for Rails 5.0 and 5.1. +- Replace RequestStore with ActiveSupport::CurrentAttributes - @punkisdead + [#702](https://github.com/collectiveidea/audited/pull/702) + ### 5.4.3 (2024-01-11) - Ignore readonly columns in audit - @sriddbs diff --git a/README.md b/README.md index 22ce14c9..e27c4a88 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,9 @@ Audited **Audited** (previously acts_as_audited) is an ORM extension that logs all changes to your models. Audited can also record who made those changes, save comments and associate models related to the changes. -Audited currently (5.x) works with Rails 7.1, 7.0, 6.1, 6.0, 5.2, 5.1, and 5.0. +Audited currently (5.5) works with Rails 7.1, 7.0, 6.1, 6.0, 5.2. +For Rails 5.0 & 5.1, use gem version 5.4.3 For Rails 4, use gem version 4.x For Rails 3, use gem version 3.0 or see the [3.0-stable branch](https://github.com/collectiveidea/audited/tree/3.0-stable). diff --git a/lib/audited/version.rb b/lib/audited/version.rb index 35f30a6b..4c797777 100644 --- a/lib/audited/version.rb +++ b/lib/audited/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Audited - VERSION = "5.4.3" + VERSION = "5.5.0" end