From 8c964aeb5dc3ef72255d05f53042ccec399a5c72 Mon Sep 17 00:00:00 2001 From: Jianbin Chen Date: Thu, 10 Oct 2024 08:14:43 -0700 Subject: [PATCH] Add change log and bump the version --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- lib/identity_cache/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d094708..bdd12c7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## 1.6.2 + +- Support deferred expiry of associations and attributes. Add a rake task to create test database. + ## 1.6.1 - Fix deprecation warnings on Active Record 7.2. (#575) diff --git a/Gemfile.lock b/Gemfile.lock index 8e4f693d..6b392fac 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,7 +8,7 @@ GIT PATH remote: . specs: - identity_cache (1.6.1) + identity_cache (1.6.2) activerecord (>= 7.0) ar_transaction_changes (~> 1.1) diff --git a/lib/identity_cache/version.rb b/lib/identity_cache/version.rb index 3f4ffb37..f100f710 100644 --- a/lib/identity_cache/version.rb +++ b/lib/identity_cache/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module IdentityCache - VERSION = "1.6.1" + VERSION = "1.6.2" CACHE_VERSION = 8 end