diff --git a/CHANGELOG.md b/CHANGELOG.md index 16d8c8df..79621558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/HubSpot/hubspot-api-ruby/compare/v17.0.0.pre.beta.4...HEAD) +## [Unreleased](https://github.com/HubSpot/hubspot-api-ruby/compare/v17.0.0...HEAD) +## [17.0.0.pre.beta.4] - 2023-06-14 + +## Updated + +- Fix `Hubspot::OAuthHelper.authorize_url()` (don't add empty scopes or optional scopes to OAuth url) + ## [17.0.0.pre.beta.4] - 2023-05-17 ## Added diff --git a/Gemfile.lock b/Gemfile.lock index 0da13d6e..39884cd6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - hubspot-api-client (17.0.0.pre.beta.4) + hubspot-api-client (17.0.0) json (~> 2.1, >= 2.1.0) typhoeus (~> 1.4.0) diff --git a/lib/hubspot/version.rb b/lib/hubspot/version.rb index 9be94a17..570adccb 100644 --- a/lib/hubspot/version.rb +++ b/lib/hubspot/version.rb @@ -1,3 +1,3 @@ module Hubspot -VERSION = '17.0.0.pre.beta.4' +VERSION = '17.0.0' end