Skip to content

Commit 83d1a77

Browse files
committed
chore(release): ship v2.20.0
1 parent b201c74 commit 83d1a77

File tree

9 files changed

+46
-38
lines changed

9 files changed

+46
-38
lines changed

.github/workflows/daily-project-check.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [18.x]
15+
node-version: [22.x]
1616
os: [ubuntu-latest, windows-latest, macOS-latest]
1717

1818
steps:
@@ -21,9 +21,11 @@ jobs:
2121
uses: actions/setup-node@v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
24-
- name: project check
24+
cache: 'npm'
25+
- name: Install dependencies
26+
run: npm ci
27+
- name: Project check
2528
run: |
26-
npm i
2729
npm run build-lib:prod
2830
npm run test-lib:prod
2931
# npm run lint
@@ -37,11 +39,11 @@ jobs:
3739
steps:
3840
- name: Checkout
3941
uses: actions/checkout@v4
40-
- name: Use Node.js 18
42+
- name: Use Node.js 22
4143
uses: actions/setup-node@v4
4244
with:
43-
node-version: 18
44-
- run: npm i
45+
node-version: 22
46+
- run: npm ci
4547
- name: e2e chrome test
4648
uses: cypress-io/github-action@v6
4749
timeout-minutes: 5

.github/workflows/project-check.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [18.x]
19+
node-version: [22.x]
2020
os: [ubuntu-latest, windows-latest, macOS-latest]
2121

2222
steps:
@@ -25,9 +25,11 @@ jobs:
2525
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
- name: project check
28+
cache: 'npm'
29+
- name: Install dependencies
30+
run: npm ci
31+
- name: Project check
2932
run: |
30-
npm i
3133
npm run build-lib:prod
3234
npm run test-lib:prod
3335
# npm run lint
@@ -41,11 +43,11 @@ jobs:
4143
steps:
4244
- name: Checkout
4345
uses: actions/checkout@v4
44-
- name: Use Node.js 18
46+
- name: Use Node.js 22
4547
uses: actions/setup-node@v4
4648
with:
47-
node-version: 18
48-
- run: npm i
49+
node-version: 22
50+
- run: npm ci
4951
- name: e2e chrome test
5052
uses: cypress-io/github-action@v6
5153
timeout-minutes: 5

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
### [@coreui/angular](https://coreui.io/) changelog
22

3+
##### `v2.20.0`
4+
5+
- update to `Angular 20.2`
6+
37
##### `v2.19.1`
48

59
- fix(app-sidebar-nav-items): dropdown closes on item click, close #222, thanks @marcoscg

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [@coreui/angular](https://coreui.io/angular)
22

3-
![angular](https://img.shields.io/badge/angular-^19.2.0-lightgrey.svg?style=flat-square&logo=angular)
3+
![angular](https://img.shields.io/badge/angular-^20.2.0-lightgrey.svg?style=flat-square&logo=angular)
44
[![npm package][npm-coreui-angular-badge-v2]][npm-coreui-angular]
55
[![npm package][npm-coreui-angular-badge-latest]][npm-coreui-angular]
66
[![NPM downloads][npm-coreui-angular-download]][npm-coreui-angular]
@@ -11,7 +11,7 @@
1111

1212

1313
[npm-coreui-angular]: https://www.npmjs.com/package/@coreui/angular
14-
[npm-coreui-angular-badge-v2]: https://img.shields.io/npm/v/@coreui/angular/v2-ng19?style=flat-square&color=red
14+
[npm-coreui-angular-badge-v2]: https://img.shields.io/npm/v/@coreui/angular/v2-ng20?style=flat-square&color=red
1515
[npm-coreui-angular-badge-latest]: https://img.shields.io/npm/v/@coreui/angular/latest?style=flat-square&color=red
1616
[npm-coreui-angular-badge-next]: https://img.shields.io/npm/v/@coreui/angular/next?style=flat-square&color=red
1717
[npm-coreui-angular-download]: https://img.shields.io/npm/dm/@coreui/angular.svg?style=flat-square
@@ -54,25 +54,25 @@ CoreUI is an Open Source UI Kit built on top of Bootstrap 4. CoreUI is the faste
5454
Before you begin, make sure your development environment includes the supported version `Typescript` as well as `Node.js®` and an `npm` package manager.
5555

5656
###### Typescript
57-
Angular 19 requires `Typescript` version `>=5.5.0 <5.9.0`.
57+
Angular 20 requires `Typescript` version `>=5.9.0 <6.0.0`.
5858

5959
- To check your version, run `tsc -v` in a terminal/console window.
6060
- To get `Typescript`, go to [www.typescriptlang.org](https://www.typescriptlang.org/).
6161

6262
###### Node.js
63-
Angular 19 requires `Node.js` version `^18.19.1 || ^20.11.1 || ^22.0.0` or newer.
63+
Angular 20 requires `Node.js` version `^20.19.0 || ^22.12.0 || ^24.0.0` or newer.
6464

6565
- To check your version, run `node -v` in a terminal/console window.
6666
- To get `Node.js`, go to [nodejs.org](https://nodejs.org/).
6767

6868
###### Angular CLI
6969
Install the Angular CLI globally using a terminal/console window.
7070
```bash
71-
npm install -g @angular/cli@19
71+
npm install -g @angular/cli@20
7272
```
7373

74-
##### Update to Angular 19
75-
see: [https://angular.dev/update-guide](https://angular.dev/update-guide?v=18.0-19.0&l=3)
74+
##### Update to Angular 20
75+
see: [https://angular.dev/update-guide](https://angular.dev/update-guide?v=19.0-20.0&l=3)
7676

7777
## Installation
7878

@@ -87,7 +87,7 @@ $ git clone https://github.com/coreui/coreui-angular.git
8787
### NPM
8888

8989
``` bash
90-
$ npm install @coreui/angular@2.19 --save
90+
$ npm install @coreui/angular@2.20 --save
9191
```
9292

9393
## Usage

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@coreui/angular-dev",
3-
"version": "2.19.1",
4-
"description": "CoreUI Angular 19 Bootstrap 4 components",
3+
"version": "2.20.0",
4+
"description": "CoreUI Angular 20.2 Bootstrap 4 components",
55
"license": "MIT",
66
"author": {
77
"name": "Łukasz Holeczek",
@@ -26,7 +26,7 @@
2626
"lint": "ng lint",
2727
"e2e": "ng e2e",
2828
"prepublish:lib": "ng test coreui-angular --karma-config=projects/coreui-angular/karma.conf.github.js && ng e2e && ng build coreui-angular --configuration production",
29-
"publish:lib": "cd dist/coreui-angular/ && npm publish --tag v2-ng19 --dry-run",
29+
"publish:lib": "cd dist/coreui-angular/ && npm publish --tag v2-ng20 --dry-run",
3030
"link": "cd dist/coreui-angular/ && npm link",
3131
"release-version": "node build/change-version.js",
3232
"cypress:open": "cypress open",

projects/coreui-angular/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [@coreui/angular](https://coreui.io/angular)
22

3-
![angular](https://img.shields.io/badge/angular-^19.2.0-lightgrey.svg?style=flat-square&logo=angular)
3+
![angular](https://img.shields.io/badge/angular-^20.2.0-lightgrey.svg?style=flat-square&logo=angular)
44
[![npm package][npm-coreui-angular-badge-v2]][npm-coreui-angular]
55
[![npm package][npm-coreui-angular-badge-latest]][npm-coreui-angular]
66
[![NPM downloads][npm-coreui-angular-download]][npm-coreui-angular]
@@ -11,7 +11,7 @@
1111

1212

1313
[npm-coreui-angular]: https://www.npmjs.com/package/@coreui/angular
14-
[npm-coreui-angular-badge-v2]: https://img.shields.io/npm/v/@coreui/angular/v2-ng19?style=flat-square&color=red
14+
[npm-coreui-angular-badge-v2]: https://img.shields.io/npm/v/@coreui/angular/v2-ng20?style=flat-square&color=red
1515
[npm-coreui-angular-badge-latest]: https://img.shields.io/npm/v/@coreui/angular/latest?style=flat-square&color=red
1616
[npm-coreui-angular-badge-next]: https://img.shields.io/npm/v/@coreui/angular/next?style=flat-square&color=red
1717
[npm-coreui-angular-download]: https://img.shields.io/npm/dm/@coreui/angular.svg?style=flat-square
@@ -54,25 +54,25 @@ CoreUI is an Open Source UI Kit built on top of Bootstrap 4. CoreUI is the faste
5454
Before you begin, make sure your development environment includes the supported version `Typescript` as well as `Node.js®` and an `npm` package manager.
5555

5656
###### Typescript
57-
Angular 19 requires `Typescript` version `>=5.5.0 <5.9.0`.
57+
Angular 20 requires `Typescript` version `>=5.9.0 <6.0.0`.
5858

5959
- To check your version, run `tsc -v` in a terminal/console window.
6060
- To get `Typescript`, go to [www.typescriptlang.org](https://www.typescriptlang.org/).
6161

6262
###### Node.js
63-
Angular 19 requires `Node.js` version `^18.19.1 || ^20.11.1 || ^22.0.0` or newer.
63+
Angular 20 requires `Node.js` version `^20.19.0 || ^22.12.0 || ^24.0.0` or newer.
6464

6565
- To check your version, run `node -v` in a terminal/console window.
6666
- To get `Node.js`, go to [nodejs.org](https://nodejs.org/).
6767

6868
###### Angular CLI
6969
Install the Angular CLI globally using a terminal/console window.
7070
```bash
71-
npm install -g @angular/cli@19
71+
npm install -g @angular/cli@20
7272
```
7373

74-
##### Update to Angular 19
75-
see: [https://angular.dev/update-guide](https://angular.dev/update-guide?v=18.0-19.0&l=3)
74+
##### Update to Angular 20
75+
see: [https://angular.dev/update-guide](https://angular.dev/update-guide?v=19.0-20.0&l=3)
7676

7777
## Installation
7878

@@ -87,7 +87,7 @@ $ git clone https://github.com/coreui/coreui-angular.git
8787
### NPM
8888

8989
``` bash
90-
$ npm install @coreui/angular@2.19 --save
90+
$ npm install @coreui/angular@2.20 --save
9191
```
9292

9393
## Usage

projects/coreui-angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@coreui/angular",
3-
"version": "2.19.1",
4-
"description": "CoreUI Angular 19 Bootstrap 4 components",
3+
"version": "2.20.0",
4+
"description": "CoreUI Angular 20 Bootstrap 4 components",
55
"license": "MIT",
66
"homepage": "https://coreui.io/angular",
77
"author": {

src/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<!--
3-
* CoreUI 2 for Angular 19 - test bed
4-
* @version v2.19.1
3+
* CoreUI 2 for Angular 20 - test bed
4+
* @version v2.20.0
55
* @link https://coreui.io/angular/
66
* Copyright (c) 2025 creativeLabs Łukasz Holeczek
77
-->

0 commit comments

Comments
 (0)