Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 07ddf7f

Browse files
authored
Merge branch 'main' into standalone-components
2 parents caebca4 + 93b71e8 commit 07ddf7f

File tree

7 files changed

+49
-18
lines changed

7 files changed

+49
-18
lines changed

libs/cdk/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
44

5+
# [15.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@15.0.0) (2023-04-12)
6+
7+
8+
### Features
9+
10+
* upgrade Angular to v15 ([a9938bc](https://github.com/rx-angular/rx-angular/commit/a9938bcb7b7df7d0557d9c682ada9cce55ad495e))
11+
12+
13+
### BREAKING CHANGES
14+
15+
* The required `@angular/core` version is now `^15.0.0`.
16+
17+
18+
519
# [14.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@14.0.0) (2023-04-11)
620

721

libs/cdk/package.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
{
22
"name": "@rx-angular/cdk",
3-
"version": "14.0.0",
3+
"version": "15.0.0",
44
"description": "@rx-angular/cdk is a Component Development Kit for ergonomic and highly performant angular applications. It helps to to build Large scale applications, UI libs, state management, rendering systems and much more. Furthermore the unique way of mixing reactive as well as imperative code leads to best DX and speed.",
55
"main": "index.js",
66
"publishConfig": {
77
"access": "public"
88
},
9-
"engines": {
10-
"node": ">=10.12.0",
11-
"npm": ">=5.3.0",
12-
"yarn": ">=1.9.2"
13-
},
149
"author": "Michael Hladky <[email protected]>",
1510
"homepage": "https://rx-angular.io/",
1611
"keywords": [

libs/state/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
44

5+
# [15.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@15.0.0) (2023-04-12)
6+
7+
8+
### Features
9+
10+
* upgrade Angular to v15 ([a9938bc](https://github.com/rx-angular/rx-angular/commit/a9938bcb7b7df7d0557d9c682ada9cce55ad495e))
11+
12+
13+
### BREAKING CHANGES
14+
15+
* The required `@angular/core` version is now `^15.0.0`.
16+
17+
18+
519
# [14.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@14.0.0) (2023-04-11)
620

721

libs/state/package.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
{
22
"name": "@rx-angular/state",
3-
"version": "14.0.0",
3+
"version": "15.0.0",
44
"description": "@rx-angular/state is a light-weight, flexible, strongly typed and tested tool dedicated to reduce the complexity of managing component state and side effects in angular",
55
"main": "index.js",
66
"publishConfig": {
77
"access": "public"
88
},
9-
"engines": {
10-
"node": ">=10.12.0",
11-
"npm": ">=5.3.0",
12-
"yarn": ">=1.9.2"
13-
},
149
"author": "Michael Hladky <[email protected]>",
1510
"homepage": "https://rx-angular.io/",
1611
"keywords": [

libs/template/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
44

5+
# [15.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@15.0.0) (2023-04-12)
6+
7+
8+
### Features
9+
10+
* upgrade Angular to v15 ([a9938bc](https://github.com/rx-angular/rx-angular/commit/a9938bcb7b7df7d0557d9c682ada9cce55ad495e))
11+
12+
13+
### BREAKING CHANGES
14+
15+
* The required `@angular/core` version is now `^15.0.0`.
16+
17+
18+
519
# [14.0.0](https://github.com/rx-angular/rx-angular/compare/[email protected]@14.0.0) (2023-04-11)
620

721

libs/template/package.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
{
22
"name": "@rx-angular/template",
3-
"version": "14.0.0",
3+
"version": "15.0.0",
44
"description": "**Fully** Reactive Component Template Rendering in Angular. @rx-angular/template aims to be a reflection of Angular's built in renderings just reactive.",
55
"main": "index.js",
66
"publishConfig": {
77
"access": "public"
88
},
9-
"engines": {
10-
"node": ">=10.12.0",
11-
"npm": ">=5.3.0",
12-
"yarn": ">=1.9.2"
13-
},
149
"author": "Michael Hladky <[email protected]>",
1510
"homepage": "https://rx-angular.io/",
1611
"keywords": [

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
"name": "rx-angular",
33
"version": "0.0.0",
44
"license": "MIT",
5+
"engines": {
6+
"node": "^16.13.0 || ^18.10.0",
7+
"yarn": "^1.22.0"
8+
},
59
"scripts": {
610
"ng": "nx",
711
"nx": "nx",

0 commit comments

Comments
 (0)