From 9f5dfd42eae4414299c345c24b4c942a791a5e99 Mon Sep 17 00:00:00 2001 From: Agis Anastasopoulos Date: Thu, 21 Oct 2021 13:21:24 +0300 Subject: [PATCH] Bump version to 2.0.0 --- package.json | 2 +- src/utils/RestClient.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a8d4439..2b4d4da 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.7.0-alpha.2", + "version": "2.0.0", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/src/utils/RestClient.ts b/src/utils/RestClient.ts index e581157..c0f10c7 100644 --- a/src/utils/RestClient.ts +++ b/src/utils/RestClient.ts @@ -5,7 +5,7 @@ import snakecaseKeys from 'snakecase-keys'; import * as querystring from 'querystring'; const packageName = '@clerk/clerk-sdk-node'; // TODO get from package.json -const packageVersion = '0.7.0-alpha.2'; // TODO get from package.json +const packageVersion = '2.0.0'; // TODO get from package.json const packageRepo = 'https://github.com/clerkinc/clerk-sdk-node'; const userAgent = `${packageName}/${packageVersion} (${packageRepo})`; const contentType = 'application/x-www-form-urlencoded';