Skip to content

Commit c0b77fe

Browse files
committed
16.0.2
1 parent 731aafb commit c0b77fe

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Angular Lib for OpenID Connect/OAuth2 Changelog
22

3+
### 2023-08-27 16.0.2
4+
5+
- small fix in v16
6+
37
### 2023-08-27 16.0.1
48

59
- Fix problem in logoff when urlHandler option is present
@@ -12,11 +16,11 @@
1216
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1812)
1317
- Remove provided in root for interceptor
1418
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1806)
15-
- Support ng-add for standalone applications
19+
- Support ng-add for standalone applications
1620
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1800)
1721
- Code improvement, remove cast
1822
- [PR](https://github.com/damienbod/angular-auth-oidc-client/pull/1787)
19-
23+
2024
### 2023-06-19 16.0.0
2125

2226
- Add provideAuth for standalone applications

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"bugs": {
99
"url": "https://github.com/damienbod/angular-auth-oidc-client/issues"
1010
},
11-
"version": "16.0.1",
11+
"version": "16.0.2",
1212
"scripts": {
1313
"ng": "ng",
1414
"build": "npm run build-lib",

projects/angular-auth-oidc-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"authorization"
3737
],
3838
"license": "MIT",
39-
"version": "16.0.1",
39+
"version": "16.0.2",
4040
"description": "Angular Lib for OpenID Connect & OAuth2",
4141
"schematics": "./schematics/collection.json",
4242
"ng-add": {

projects/schematics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "schematics",
3-
"version": "16.0.1",
3+
"version": "16.0.2",
44
"description": "A schematic for the Angular Lib for OpenID Connect & OAuth2",
55
"scripts": {
66
"build": "tsc -p tsconfig.json",

projects/schematics/src/ng-add/actions/add-dependencies.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { NgAddOptions } from '../models/ng-add-options';
55
const dependenciesToAdd: any[] = [
66
{
77
name: 'angular-auth-oidc-client',
8-
version: '16.0.1',
8+
version: '16.0.2',
99
},
1010
];
1111

0 commit comments

Comments
 (0)