Skip to content

Commit 1af9234

Browse files
authored
Merge pull request #479 from SwabianCoder/docs/478-fix-readme-heading-of-ngx-toolset-api-token-interceptor
Docs/478 fix readme heading of ngx toolset api token interceptor
2 parents 76f6cbf + 89d2bc3 commit 1af9234

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

projects/api-token-interceptor/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.0.0] - 2023-11-12
9+
10+
### Fixed
11+
12+
- a heading of the README
13+
14+
### Removed
15+
16+
- a comma from the README
17+
818
## [2.0.0] - 2023-11-10
919

1020
### Added

projects/api-token-interceptor/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ Choose the version corresponding to your Angular version:
3636
|---------|------------------------------------|
3737
| 14.x.x | >=0.0.1 <=1.0.0-rc.12 |
3838
| 15.x.x | 1.0.0-rc.13 |
39-
| 16.x.x | >=1.0.0-rc.14 <=2.0.0 |
39+
| 16.x.x | >=1.0.0-rc.14 <=3.0.0 |
4040

4141
## Usage
4242

43-
### Module Import
43+
### Provide HTTP client with Interceptor
4444

4545
Provide the HTTP client with the `apiTokenInterceptor` in your `main.ts`:
4646

@@ -86,7 +86,7 @@ bootstrapApplication(AppComponent, {
8686
},
8787
{
8888
provide: BEARER_TOKEN_CALLBACK_FN,
89-
useValue: (): string => 'dummyToken',
89+
useValue: (): string => 'dummyToken'
9090
}
9191
]
9292
});

projects/api-token-interceptor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-toolset/api-token-interceptor",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"description": "Angular API token interceptor",
55
"homepage": "https://github.com/SwabianCoder/ngx-toolset",
66
"license": "MIT",

0 commit comments

Comments
 (0)