diff --git a/CHANGELOG.md b/CHANGELOG.md index 82471abae..88be57ad3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [8.1.3](https://github.com/NativeScript/NativeScript/compare/8.1.2-core...8.1.3) (2021-09-18) + + +### Bug Fixes + +* **android:** only attach if activity is CREATED ([#9552](https://github.com/NativeScript/NativeScript/issues/9552)) ([90b8718](https://github.com/NativeScript/NativeScript/commit/90b8718138fc6e67e2141d9b77017b3d96e50d51)) + + + ## [8.1.2](https://github.com/NativeScript/NativeScript/compare/8.1.1-core...8.1.2) (2021-09-15) diff --git a/apps/automated/package.json b/apps/automated/package.json index d9bd699f3..dbec953e9 100644 --- a/apps/automated/package.json +++ b/apps/automated/package.json @@ -10,8 +10,8 @@ "clean": "npx rimraf hooks node_modules platforms package-lock.json && npm i --legacy-peer-deps" }, "dependencies": { - "nativescript-theme-core": "file:../../node_modules/nativescript-theme-core", - "@nativescript/core": "file:../../packages/core" + "@nativescript/core": "file:../../packages/core", + "nativescript-theme-core": "file:../../node_modules/nativescript-theme-core" }, "devDependencies": { "@nativescript/android": "7.0.1", diff --git a/package.json b/package.json index 67d426033..3485b7329 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "nativescript", - "version": "8.1.2", + "version": "8.1.3", "license": "MIT", "scripts": { "clean": "git clean -f -X -d --exclude=!.idea/ --exclude=!.vscode/*", "setup": "npm run clean && npm install --legacy-peer-deps", - "setup:yarn": "yarn run clean && yarn", + "setup:yarn": "yarn clean && yarn", "setup:pnpm": "pnpm run clean && pnpm install", "postinstall": "ts-patch install && husky install && nx run core:setup", "start": "nps", @@ -53,7 +53,7 @@ "mocha": "^8.0.1", "mocha-typescript": "^1.1.17", "module-alias": "^2.2.2", - "nativescript": "~7.2.0", + "nativescript": "~8.1.2", "nativescript-typedoc-theme": "1.0.0", "parse-css": "git+https://github.com/tabatkins/parse-css.git", "parserlib": "^1.1.1", diff --git a/packages/core/package.json b/packages/core/package.json index 41497a5f0..f6c1ef372 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "main": "index", "types": "index.d.ts", "description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.", - "version": "8.1.2", + "version": "8.1.3", "homepage": "https://nativescript.org", "repository": { "type": "git",