From 778511b34653ec53069ddbbcc47b5000f35373db Mon Sep 17 00:00:00 2001 From: damienbod Date: Wed, 10 Sep 2025 19:05:23 +0200 Subject: [PATCH] 20.0.1 --- CHANGELOG.md | 6 ++++++ package-lock.json | 4 ++-- package.json | 2 +- projects/angular-auth-oidc-client/package.json | 2 +- projects/schematics/package.json | 2 +- projects/schematics/src/ng-add/actions/add-dependencies.ts | 2 +- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3d88f90..62e1599e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## Angular Lib for OpenID Connect/OAuth2 Changelog +### 2025-09-10 20.0.1 + +- Angular 20.2.3 +- Bug: AuthResult type is no longer exported since 20.0.0 + - [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/2128) + ### 2025-09-05 20.0.0 - Angular 20.2.3 diff --git a/package-lock.json b/package-lock.json index 3bc6f29b..d24ab82a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "angular-auth-oidc-client", - "version": "20.0.0", + "version": "20.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "angular-auth-oidc-client", - "version": "20.0.0", + "version": "20.0.1", "dependencies": { "@angular/animations": "^20.2.3", "@angular/common": "^20.2.3", diff --git a/package.json b/package.json index 155fd636..445219a4 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "bugs": { "url": "https://github.com/damienbod/angular-auth-oidc-client/issues" }, - "version": "20.0.0", + "version": "20.0.1", "scripts": { "ng": "ng", "build": "npm run build-lib", diff --git a/projects/angular-auth-oidc-client/package.json b/projects/angular-auth-oidc-client/package.json index c9ed351c..e91d57aa 100644 --- a/projects/angular-auth-oidc-client/package.json +++ b/projects/angular-auth-oidc-client/package.json @@ -36,7 +36,7 @@ "authorization" ], "license": "MIT", - "version": "20.0.0", + "version": "20.0.1", "description": "Angular Lib for OpenID Connect & OAuth2", "schematics": "./schematics/collection.json", "ng-add": { diff --git a/projects/schematics/package.json b/projects/schematics/package.json index 01702c4e..ebe70b7e 100644 --- a/projects/schematics/package.json +++ b/projects/schematics/package.json @@ -1,6 +1,6 @@ { "name": "schematics", - "version": "20.0.0", + "version": "20.0.1", "description": "A schematic for the Angular Lib for OpenID Connect & OAuth2", "scripts": { "build": "tsc -p tsconfig.json", diff --git a/projects/schematics/src/ng-add/actions/add-dependencies.ts b/projects/schematics/src/ng-add/actions/add-dependencies.ts index a24c21e1..f30d6ee2 100644 --- a/projects/schematics/src/ng-add/actions/add-dependencies.ts +++ b/projects/schematics/src/ng-add/actions/add-dependencies.ts @@ -5,7 +5,7 @@ import { NgAddOptions } from '../models/ng-add-options'; const dependenciesToAdd: any[] = [ { name: 'angular-auth-oidc-client', - version: '20.0.0', + version: '20.0.1', }, ];