From 4a5d022b30a571d266f3c6faa09555431fe6e127 Mon Sep 17 00:00:00 2001 From: tbozhikov Date: Tue, 12 Nov 2019 12:40:13 +0200 Subject: [PATCH 1/3] fix: add exports for backwards compatibility --- nativescript-angular-package/app-host-view.ts | 1 + nativescript-angular-package/common.ts | 1 + nativescript-angular-package/common/detached-loader.ts | 1 + nativescript-angular-package/common/utils.ts | 1 + nativescript-angular-package/dom-adapter.ts | 1 + nativescript-angular-package/package.json | 2 +- nativescript-angular-package/schema-registry.ts | 1 + 7 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 nativescript-angular-package/app-host-view.ts create mode 100644 nativescript-angular-package/common.ts create mode 100644 nativescript-angular-package/common/detached-loader.ts create mode 100644 nativescript-angular-package/common/utils.ts create mode 100644 nativescript-angular-package/dom-adapter.ts create mode 100644 nativescript-angular-package/schema-registry.ts diff --git a/nativescript-angular-package/app-host-view.ts b/nativescript-angular-package/app-host-view.ts new file mode 100644 index 000000000..2afcaf55e --- /dev/null +++ b/nativescript-angular-package/app-host-view.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/app-host-view"; \ No newline at end of file diff --git a/nativescript-angular-package/common.ts b/nativescript-angular-package/common.ts new file mode 100644 index 000000000..8734f5c94 --- /dev/null +++ b/nativescript-angular-package/common.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/common"; \ No newline at end of file diff --git a/nativescript-angular-package/common/detached-loader.ts b/nativescript-angular-package/common/detached-loader.ts new file mode 100644 index 000000000..1bf4ba6f3 --- /dev/null +++ b/nativescript-angular-package/common/detached-loader.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/common/detached-loader"; \ No newline at end of file diff --git a/nativescript-angular-package/common/utils.ts b/nativescript-angular-package/common/utils.ts new file mode 100644 index 000000000..54c798aed --- /dev/null +++ b/nativescript-angular-package/common/utils.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/common/utils"; \ No newline at end of file diff --git a/nativescript-angular-package/dom-adapter.ts b/nativescript-angular-package/dom-adapter.ts new file mode 100644 index 000000000..46373fefc --- /dev/null +++ b/nativescript-angular-package/dom-adapter.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/dom-adapter"; \ No newline at end of file diff --git a/nativescript-angular-package/package.json b/nativescript-angular-package/package.json index b42898ffd..33fc4f677 100644 --- a/nativescript-angular-package/package.json +++ b/nativescript-angular-package/package.json @@ -1,6 +1,6 @@ { "name": "nativescript-angular", - "version": "8.20.1", + "version": "8.20.2", "description": "An Angular renderer that lets you build mobile apps with NativeScript.", "homepage": "https://www.nativescript.org/", "bugs": "https://github.com/NativeScript/nativescript-angular/issues", diff --git a/nativescript-angular-package/schema-registry.ts b/nativescript-angular-package/schema-registry.ts new file mode 100644 index 000000000..1b76567a7 --- /dev/null +++ b/nativescript-angular-package/schema-registry.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/schema-registry"; \ No newline at end of file From fbd46c1741c9531d8479a57e41109106c43aaf7a Mon Sep 17 00:00:00 2001 From: tbozhikov Date: Wed, 13 Nov 2019 16:34:04 +0200 Subject: [PATCH 2/3] release: cut the 8.20.3 release --- CHANGELOG.md | 10 ++++++++++ .../forms/value-accessors/checked-value-accessor.ts | 1 + .../forms/value-accessors/date-value-accessor.ts | 1 + .../forms/value-accessors/number-value-accessor.ts | 1 + .../value-accessors/selectedIndex-value-accessor.ts | 1 + .../forms/value-accessors/text-value-accessor.ts | 1 + .../forms/value-accessors/time-value-accessor.ts | 1 + nativescript-angular-package/package.json | 2 +- nativescript-angular/package.json | 2 +- 9 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 nativescript-angular-package/forms/value-accessors/checked-value-accessor.ts create mode 100644 nativescript-angular-package/forms/value-accessors/date-value-accessor.ts create mode 100644 nativescript-angular-package/forms/value-accessors/number-value-accessor.ts create mode 100644 nativescript-angular-package/forms/value-accessors/selectedIndex-value-accessor.ts create mode 100644 nativescript-angular-package/forms/value-accessors/text-value-accessor.ts create mode 100644 nativescript-angular-package/forms/value-accessors/time-value-accessor.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd8dcea2..6ba7dda32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +## [8.20.3](https://github.com/NativeScript/nativescript-angular/compare/8.20.0...8.20.3) (2019-11-13) + + +### Bug Fixes + +* add exports for backwards compatibility ([4a5d022](https://github.com/NativeScript/nativescript-angular/commit/4a5d022)) + + + ## [8.20.2](https://github.com/NativeScript/nativescript-angular/compare/8.20.0...8.20.2) (2019-11-12) diff --git a/nativescript-angular-package/forms/value-accessors/checked-value-accessor.ts b/nativescript-angular-package/forms/value-accessors/checked-value-accessor.ts new file mode 100644 index 000000000..27f9059a7 --- /dev/null +++ b/nativescript-angular-package/forms/value-accessors/checked-value-accessor.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/forms/value-accessors/checked-value-accessor"; \ No newline at end of file diff --git a/nativescript-angular-package/forms/value-accessors/date-value-accessor.ts b/nativescript-angular-package/forms/value-accessors/date-value-accessor.ts new file mode 100644 index 000000000..f3640a34c --- /dev/null +++ b/nativescript-angular-package/forms/value-accessors/date-value-accessor.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/forms/value-accessors/date-value-accessor"; \ No newline at end of file diff --git a/nativescript-angular-package/forms/value-accessors/number-value-accessor.ts b/nativescript-angular-package/forms/value-accessors/number-value-accessor.ts new file mode 100644 index 000000000..5f9ff4ec8 --- /dev/null +++ b/nativescript-angular-package/forms/value-accessors/number-value-accessor.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/forms/value-accessors/number-value-accessor"; \ No newline at end of file diff --git a/nativescript-angular-package/forms/value-accessors/selectedIndex-value-accessor.ts b/nativescript-angular-package/forms/value-accessors/selectedIndex-value-accessor.ts new file mode 100644 index 000000000..b2075eea4 --- /dev/null +++ b/nativescript-angular-package/forms/value-accessors/selectedIndex-value-accessor.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/forms/value-accessors/selectedindex-value-accessor"; \ No newline at end of file diff --git a/nativescript-angular-package/forms/value-accessors/text-value-accessor.ts b/nativescript-angular-package/forms/value-accessors/text-value-accessor.ts new file mode 100644 index 000000000..81db7183d --- /dev/null +++ b/nativescript-angular-package/forms/value-accessors/text-value-accessor.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/forms/value-accessors/text-value-accessor"; \ No newline at end of file diff --git a/nativescript-angular-package/forms/value-accessors/time-value-accessor.ts b/nativescript-angular-package/forms/value-accessors/time-value-accessor.ts new file mode 100644 index 000000000..98647ee2e --- /dev/null +++ b/nativescript-angular-package/forms/value-accessors/time-value-accessor.ts @@ -0,0 +1 @@ +export * from "@nativescript/angular/forms/value-accessors/time-value-accessor"; \ No newline at end of file diff --git a/nativescript-angular-package/package.json b/nativescript-angular-package/package.json index 33fc4f677..a75e62caf 100644 --- a/nativescript-angular-package/package.json +++ b/nativescript-angular-package/package.json @@ -1,6 +1,6 @@ { "name": "nativescript-angular", - "version": "8.20.2", + "version": "8.20.3", "description": "An Angular renderer that lets you build mobile apps with NativeScript.", "homepage": "https://www.nativescript.org/", "bugs": "https://github.com/NativeScript/nativescript-angular/issues", diff --git a/nativescript-angular/package.json b/nativescript-angular/package.json index bbf93ee95..279250572 100644 --- a/nativescript-angular/package.json +++ b/nativescript-angular/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/angular", - "version": "8.20.2", + "version": "8.20.3", "description": "An Angular renderer that lets you build mobile apps with NativeScript.", "homepage": "https://www.nativescript.org/", "bugs": "https://github.com/NativeScript/nativescript-angular/issues", From e0f999f40e05bab6531598f0561f10205f8be450 Mon Sep 17 00:00:00 2001 From: tbozhikov Date: Wed, 13 Nov 2019 16:39:25 +0200 Subject: [PATCH 3/3] mend --- CHANGELOG.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ba7dda32..554fc48b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,13 @@ -## [8.20.3](https://github.com/NativeScript/nativescript-angular/compare/8.20.0...8.20.3) (2019-11-13) +## [8.20.3](https://github.com/NativeScript/nativescript-angular/compare/8.20.2...8.20.3) (2019-11-13) ### Bug Fixes -* add exports for backwards compatibility ([4a5d022](https://github.com/NativeScript/nativescript-angular/commit/4a5d022)) - - +* add exports for backwards compatibility ([fbd46c1](https://github.com/NativeScript/nativescript-angular/commit/fbd46c1)) -## [8.20.2](https://github.com/NativeScript/nativescript-angular/compare/8.20.0...8.20.2) (2019-11-12) +## [8.20.2](https://github.com/NativeScript/nativescript-angular/compare/8.20.1...8.20.2) (2019-11-12) ### Bug Fixes