From 13543393485005486c697ad010387b22871d4bc4 Mon Sep 17 00:00:00 2001 From: Tim Rogers Date: Fri, 15 Oct 2021 17:47:27 +0100 Subject: [PATCH] v5.2.0 * Add support for Salesforce's Composite API and Composite Batch API (@meenie, @amacdougall) * Improve the performance of counting numbers of query results with `Restforce::Collection#count`, avoiding unnecessary API requests (@jhass) --- CHANGELOG.md | 5 +++++ README.md | 2 +- lib/restforce/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4823ec75..5e51699c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 5.2.0 (Oct 15, 2021) + +* Add support for Salesforce's Composite API and Composite Batch API (@meenie, @amacdougall) +* Improve the performance of counting numbers of query results with `Restforce::Collection#count`, avoiding unnecessary API requests (@jhass) + ## 5.1.1 (Oct 13, 2021) * Handle the `INVALID_REPLICATION_DATE` error returned by Salesforce (@michaelwnyc) diff --git a/README.md b/README.md index 7bbbc2f4..ace31d7f 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Features include: Add this line to your application's Gemfile: - gem 'restforce', '~> 5.1.1' + gem 'restforce', '~> 5.2.0' And then execute: diff --git a/lib/restforce/version.rb b/lib/restforce/version.rb index 891ebbf4..2b7836b7 100644 --- a/lib/restforce/version.rb +++ b/lib/restforce/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Restforce - VERSION = '5.1.1' + VERSION = '5.2.0' end