diff --git a/CHANGELOG.md b/CHANGELOG.md index 4652bd5e..4361068e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.1.2](https://github.com/panva/oauth4webapi/compare/v1.1.1...v1.1.2) (2022-07-12) + ## [1.1.1](https://github.com/panva/oauth4webapi/compare/v1.1.0...v1.1.1) (2022-07-04) diff --git a/package-lock.json b/package-lock.json index 87c9d694..239456ff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@panva/oauth4webapi", - "version": "1.1.1", + "version": "1.1.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@panva/oauth4webapi", - "version": "1.1.1", + "version": "1.1.2", "license": "MIT", "devDependencies": { "@esbuild-kit/esm-loader": "^2.3.1", diff --git a/package.json b/package.json index 9eb700f7..b187025a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@panva/oauth4webapi", - "version": "1.1.1", + "version": "1.1.2", "description": "OAuth 2 / OpenID Connect for Web Platform API JavaScript runtimes", "keywords": [ "auth", diff --git a/src/index.ts b/src/index.ts index bca3f325..0dff4fe0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,7 +2,7 @@ let USER_AGENT: string // @ts-ignore if (typeof navigator === 'undefined' || !navigator.userAgent?.startsWith?.('Mozilla/5.0 ')) { const NAME = 'oauth4webapi' - const VERSION = 'v1.1.1' + const VERSION = 'v1.1.2' USER_AGENT = `${NAME}/${VERSION}` }