From 7847c2fd35ddf404fcf5d8808af4657151c8d2cf Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Sat, 27 Feb 2021 13:30:51 -0800 Subject: [PATCH] chore(release): @nativescript/core@7.3.0 --- CHANGELOG.md | 44 +++++++++++++++++++++++++++++ package.json | 2 +- packages/core/package.json | 2 +- packages/types-android/package.json | 2 +- packages/types-ios/package.json | 2 +- packages/types/package.json | 6 ++-- 6 files changed, 51 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e79c65530..aef8770c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,47 @@ +# [7.3.0](https://github.com/NativeScript/NativeScript/compare/7.2.2-core...7.3.0) (2021-02-27) + + +### Bug Fixes + +* **core:** AndroidTransitionType symbol export handling ([#9252](https://github.com/NativeScript/NativeScript/issues/9252)) ([ac7f041](https://github.com/NativeScript/NativeScript/commit/ac7f041deada46bfe3bbd8359c02e9224155efd8)) + + +### Features + +* **android:** types for API Level 30 and cleanup ([#9219](https://github.com/NativeScript/NativeScript/issues/9219)) ([ebcc0e2](https://github.com/NativeScript/NativeScript/commit/ebcc0e2cc0e14d2042582901d36d4cfece7fae58)) + + +### BREAKING CHANGES + +* **core:** AndroidTransitionType is now a static member of the Transition class. + +BEFORE: + +``` +import { AndroidTransitionType } from '@nativescript/core/ui/transition'; +``` + +AFTER: + +``` +import { Transition } from '@nativescript/core'; +Transition.AndroidTransitionType.enter; // etc. +``` + +* **android:** If you were using`native.Array` for any of your own custom plugin typings, you can switch them to `androidNative.Array` + +BEFORE: + +``` +public writeAsync(path: string, bytes: native.Array) ... +``` + +AFTER: + +``` +public writeAsync(path: string, bytes: androidNative.Array) ... +``` + ## [7.2.2](https://github.com/NativeScript/NativeScript/compare/7.2.1-core...7.2.2) (2021-02-27) diff --git a/package.json b/package.json index 7e6f3f842..929f6a64a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nativescript", - "version": "7.2.2", + "version": "7.3.0", "license": "MIT", "scripts": { "clean": "git clean -f -X -d", diff --git a/packages/core/package.json b/packages/core/package.json index f37d6a5ff..9f35359b1 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "main": "index", "types": "index.d.ts", "description": "NativeScript Core Modules", - "version": "7.2.2", + "version": "7.3.0", "homepage": "https://nativescript.org", "repository": { "type": "git", diff --git a/packages/types-android/package.json b/packages/types-android/package.json index 76b7775d5..2812acf1a 100644 --- a/packages/types-android/package.json +++ b/packages/types-android/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/types-android", - "version": "7.3.0-rc.0", + "version": "7.3.0", "description": "NativeScript Types for Android.", "homepage": "https://nativescript.org", "repository": { diff --git a/packages/types-ios/package.json b/packages/types-ios/package.json index cb298a541..1a5c10a8f 100644 --- a/packages/types-ios/package.json +++ b/packages/types-ios/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/types-ios", - "version": "7.3.0-rc.0", + "version": "7.3.0", "description": "NativeScript Types for iOS.", "homepage": "https://nativescript.org", "repository": { diff --git a/packages/types/package.json b/packages/types/package.json index 111b10274..1ae09563f 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript/types", - "version": "7.3.0-rc.0", + "version": "7.3.0", "description": "NativeScript Types for all supported platforms.", "homepage": "https://nativescript.org", "repository": { @@ -12,7 +12,7 @@ ], "license": "Apache-2.0", "dependencies": { - "@nativescript/types-ios": "7.3.0-rc.0", - "@nativescript/types-android": "7.3.0-rc.0" + "@nativescript/types-ios": "7.3.0", + "@nativescript/types-android": "7.3.0" } }