Skip to content

Commit f2d16f1

Browse files
committed
chore: Ship v2.15.1
1 parent 261eb85 commit f2d16f1

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
### [@coreui/angular](https://coreui.io/) changelog
22

3+
##### `v2.15.1`
4+
5+
- fix(testapp): remove Ivy incompatible ngx-perfect-scrollbar
6+
- chore(workflows): update to npm 18, lock googlechrome v114
7+
- chore(dependencies): update
8+
39
##### `v2.15.0`
410

511
- update to `Angular 15`

Diff for: package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular-dev",
3-
"version": "2.15.0",
3+
"version": "2.15.1",
44
"description": "CoreUI Angular 15 Bootstrap 4 components",
55
"license": "MIT",
66
"author": {
@@ -25,6 +25,7 @@
2525
"test": "ng test",
2626
"lint": "ng lint",
2727
"e2e": "ng e2e",
28+
"prepublish": "ng test coreui-angular --karma-config=projects/coreui-angular/karma.conf.github.js && ng build coreui-angular --configuration production",
2829
"publish": "cd dist/coreui-angular/ && npm publish --tag v2-lts-ng-15 --dry-run",
2930
"link": "cd dist/coreui-angular/ && npm link",
3031
"release-version": "node build/change-version.js"

Diff for: projects/coreui-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/angular",
3-
"version": "2.15.0",
3+
"version": "2.15.1",
44
"description": "CoreUI Angular 15 Bootstrap 4 components",
55
"license": "MIT",
66
"homepage": "https://coreui.io/angular",

Diff for: src/app/app.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Router, NavigationEnd } from '@angular/router';
77
template: '<router-outlet></router-outlet>'
88
})
99
export class AppComponent implements OnInit {
10-
title = 'CoreUI 2 for Angular 8';
10+
title = 'CoreUI 2 for Angular 15';
1111
constructor(private router: Router) { }
1212

1313
ngOnInit() {

0 commit comments

Comments
 (0)