diff --git a/CHANGELOG.md b/CHANGELOG.md index 908d5b7..1e5a7cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +0.15.0 +------ +- The following methods now take a subscription_id as the first argument: + - create_subscription + - delete_subscription +- Fix scope param handling for `auth_url` +- Refactor configuration logic +- Improve endpoint request specs +- Format code with Rubocop + 0.14.2 ------ - Add documentation for more methods diff --git a/lib/fitbit_api/version.rb b/lib/fitbit_api/version.rb index 1732f9b..cbe559e 100644 --- a/lib/fitbit_api/version.rb +++ b/lib/fitbit_api/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module FitbitAPI - VERSION = '0.14.2' + VERSION = '0.15.0' end