From 808581dd31ada0c36313784537cc17437b4ed8dc Mon Sep 17 00:00:00 2001 From: Sean Edge Date: Thu, 15 Feb 2024 10:09:54 -0500 Subject: [PATCH] Prep for 0.21.0 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 e260d05..61ab62c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Not released +## 0.21.0 + - Uninitialized attributes will ERROR instead of returning as `nil` (https://github.com/Beyond-Finance/active_force/pull/78) - Add Range condition support (https://github.com/Beyond-Finance/active_force/pull/87) - Use ':decimal' type for Salesforce currency fields in model generation (#88) (https://github.com/Beyond-Finance/active_force/pull/88) @@ -11,6 +13,7 @@ - Change `.first` to not query the API if records have already been retrieved (https://github.com/Beyond-Finance/active_force/pull/77) ## 0.20.1 + - Revert "ActiveForce .first performance enhancement (#73)" (https://github.com/Beyond-Finance/active_force/pull/76) ## 0.20.0 diff --git a/lib/active_force/version.rb b/lib/active_force/version.rb index cf37257..7b25466 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.20.1' + VERSION = '0.21.0' end