From 575a5eb19dab6bdf2575069f2b38c01051056846 Mon Sep 17 00:00:00 2001 From: Sean Edge Date: Fri, 17 May 2024 16:20:46 -0400 Subject: [PATCH] Prep for 0.21.1 release. --- CHANGELOG.md | 3 +++ lib/active_force/version.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61ab62c..3224fb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Not released +## 0.21.1 +- Fixes #91. Applies scopes to eager-loaded associations when they are nested. (https://github.com/Beyond-Finance/active_force/pull/92) + ## 0.21.0 - Uninitialized attributes will ERROR instead of returning as `nil` (https://github.com/Beyond-Finance/active_force/pull/78) diff --git a/lib/active_force/version.rb b/lib/active_force/version.rb index 7b25466..ab78806 100644 --- a/lib/active_force/version.rb +++ b/lib/active_force/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActiveForce - VERSION = '0.21.0' + VERSION = '0.21.1' end