Merge branch 'release'

This commit is contained in:
Vasil Trifonov
2020-03-16 14:31:26 +02:00
4 changed files with 98 additions and 81 deletions

View File

@ -1,3 +1,20 @@
## [6.4.2](https://github.com/NativeScript/NativeScript/compare/6.4.1...6.4.2) (2020-02-27)
### Bug Fixes
* **ios:** Ensure ObserverClass is initialized ([#8365](https://github.com/NativeScript/NativeScript/issues/8365)) ([06b9ecf](https://github.com/NativeScript/NativeScript/commit/06b9ecf))
* **tabs:** Tabs animation and selected index fixes ([#8377](https://github.com/NativeScript/NativeScript/issues/8377)) ([acaabb](https://github.com/NativeScript/NativeScript/commit/acaabb))
* XHR readystatechange event ([cff125d](https://github.com/NativeScript/NativeScript/commit/cff125d))
* guard cachedDrawable ([#8320](https://github.com/NativeScript/NativeScript/issues/8320)) ([dd11158](https://github.com/NativeScript/NativeScript/commit/dd11158))
### Features
* Add .kt extension to known extensions map ([#8363](https://github.com/NativeScript/NativeScript/issues/8363)) ([398457c](https://github.com/NativeScript/NativeScript/commit/398457c))
## 6.4.1 (2020-02-17) ## 6.4.1 (2020-02-17)

View File

@ -1,25 +1,25 @@
{ {
"name": "tns-core-modules", "name": "tns-core-modules",
"main": "index", "main": "index",
"types": "index.d.ts", "types": "index.d.ts",
"description": "Telerik NativeScript Core Modules", "description": "Telerik NativeScript Core Modules",
"version": "6.5.0", "version": "6.5.0",
"homepage": "https://www.nativescript.org", "homepage": "https://www.nativescript.org",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/NativeScript/NativeScript" "url": "https://github.com/NativeScript/NativeScript"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"@nativescript/core": "*" "@nativescript/core": "*"
}, },
"devDependencies": { "devDependencies": {
"tns-platform-declarations": "*" "tns-platform-declarations": "*"
}, },
"nativescript": { "nativescript": {
"platforms": { "platforms": {
"ios": "5.0.0", "ios": "5.0.0",
"android": "5.0.0" "android": "5.0.0"
}
} }
} }
}

View File

@ -1,24 +1,24 @@
{ {
"name": "tns-core-modules-widgets", "name": "tns-core-modules-widgets",
"version": "6.5.0", "version": "6.5.0",
"description": "Native widgets used in the NativeScript framework.", "description": "Native widgets used in the NativeScript framework.",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/NativeScript/NativeScript" "url": "https://github.com/NativeScript/NativeScript"
}, },
"author": "NativeScript team", "author": "NativeScript team",
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/NativeScript/NativeScript/issues" "url": "https://github.com/NativeScript/NativeScript/issues"
}, },
"homepage": "https://github.com/NativeScript/NativeScript/blob/master/tns-core-modules-widgets#readme", "homepage": "https://github.com/NativeScript/NativeScript/blob/master/tns-core-modules-widgets#readme",
"nativescript": { "nativescript": {
"platforms": { "platforms": {
"ios": "6.0.0", "ios": "6.0.0",
"android": "6.0.0" "android": "6.0.0"
}
} }
} }
}

View File

@ -1,37 +1,37 @@
{ {
"name": "tns-platform-declarations", "name": "tns-platform-declarations",
"version": "6.5.0", "version": "6.5.0",
"description": "Platform-specific TypeScript declarations for NativeScript for accessing native objects", "description": "Platform-specific TypeScript declarations for NativeScript for accessing native objects",
"main": "", "main": "",
"scripts": { "scripts": {
"test": "tsc", "test": "tsc",
"package-tag": "npm version $npm_package_version-$PACKAGE_VERSION --no-git-tag-version" "package-tag": "npm version $npm_package_version-$PACKAGE_VERSION --no-git-tag-version"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+ssh://git@github.com/NativeScript/NativeScript.git" "url": "git+ssh://git@github.com/NativeScript/NativeScript.git"
}, },
"keywords": [ "keywords": [
"NativeScript", "NativeScript",
"TypeScript", "TypeScript",
"declarations", "declarations",
"native", "native",
"platform-specific", "platform-specific",
"tns", "tns",
"ts", "ts",
"ns" "ns"
], ],
"author": { "author": {
"name": "Telerik", "name": "Telerik",
"email": "support@telerik.com", "email": "support@telerik.com",
"url": "http://www.telerik.com" "url": "http://www.telerik.com"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"bugs": { "bugs": {
"url": "https://github.com/NativeScript/NativeScript/issues" "url": "https://github.com/NativeScript/NativeScript/issues"
}, },
"homepage": "https://github.com/NativeScript/NativeScript#readme", "homepage": "https://github.com/NativeScript/NativeScript#readme",
"devDependencies": { "devDependencies": {
"typescript": "^3.7.5" "typescript": "^3.7.5"
} }
} }