diff --git a/CHANGELOG.md b/CHANGELOG.md index c4b1f8c2..a0139920 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ 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.0](https://github.com/panva/oauth4webapi/compare/v1.0.5...v1.1.0) (2022-06-28) + + +### Features + +* allow AbortSignal-returning function as well as an instance ([90d21b8](https://github.com/panva/oauth4webapi/commit/90d21b871c00e74fbea584c700260067edea350b)) + ## [1.0.5](https://github.com/panva/oauth4webapi/compare/v1.0.4...v1.0.5) (2022-06-17) diff --git a/package-lock.json b/package-lock.json index c606b8d8..927bee9a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@panva/oauth4webapi", - "version": "1.0.5", + "version": "1.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@panva/oauth4webapi", - "version": "1.0.5", + "version": "1.1.0", "license": "MIT", "devDependencies": { "@esbuild-kit/esm-loader": "^2.3.1", diff --git a/package.json b/package.json index 1bedbb7e..c3f5f326 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@panva/oauth4webapi", - "version": "1.0.5", + "version": "1.1.0", "description": "OAuth 2 / OpenID Connect for Web Platform API JavaScript runtimes", "keywords": [ "auth", diff --git a/src/index.ts b/src/index.ts index 62023d50..7b81d84d 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.0.5' + const VERSION = 'v1.1.0' USER_AGENT = `${NAME}/${VERSION}` }