From f91f8649277acd8fc278df6944cbb32f8f60b0f4 Mon Sep 17 00:00:00 2001 From: Haris Chaniotakis Date: Thu, 21 Oct 2021 11:30:03 +0300 Subject: [PATCH] Bump version to v0.7.0-alpha.2 --- package.json | 2 +- src/utils/RestClient.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 20a6a5f..a8d4439 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.7.0-alpha.1", + "version": "0.7.0-alpha.2", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/src/utils/RestClient.ts b/src/utils/RestClient.ts index 1e17487..e581157 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.1'; // TODO get from package.json +const packageVersion = '0.7.0-alpha.2'; // 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';