From f454a679e253848575efe441efa1c353a0122091 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 5 Nov 2021 13:42:32 +0000 Subject: [PATCH] chore(release): 2.0.0 [skip ci] # [2.0.0](https://github.com/rfoel/strava/compare/v1.4.0...v2.0.0) (2021-11-05) ### Bug Fixes * fix query params ([f0a967b](https://github.com/rfoel/strava/commit/f0a967b5dc7df147ce0e76fd26d96dcc5f77f8a2)), closes [#112](https://github.com/rfoel/strava/issues/112) ### BREAKING CHANGES * ActivityType and StreamKeys are now template literal types, meaning that whenever used before the user had to use the enum like [StreamKeys.LatLng] now it should be replaced with simply ['latlng'] with the benefits of autocompleting. --- CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b87153b..41e60d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [2.0.0](https://github.com/rfoel/strava/compare/v1.4.0...v2.0.0) (2021-11-05) + + +### Bug Fixes + +* fix query params ([f0a967b](https://github.com/rfoel/strava/commit/f0a967b5dc7df147ce0e76fd26d96dcc5f77f8a2)), closes [#112](https://github.com/rfoel/strava/issues/112) + + +### BREAKING CHANGES + +* ActivityType and StreamKeys are now template literal types, meaning that +whenever used before the user had to use the enum like [StreamKeys.LatLng] +now it should be replaced with simply ['latlng'] with the benefits of autocompleting. + # [1.4.0](https://github.com/rfoel/strava/compare/v1.3.3...v1.4.0) (2021-10-26) diff --git a/package.json b/package.json index eafa628..ceff27a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "strava", - "version": "1.4.0", + "version": "2.0.0", "description": "This library is a fully typed JavaScript wrapper of the Strava JSON API", "main": "dist/index.js", "typings": "dist/index.d.ts",