diff --git a/CHANGELOG.md b/CHANGELOG.md index a90181768..b0a33425d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +# [8.20.0](https://github.com/NativeScript/nativescript-angular/compare/8.2.2...8.20.0) (2019-10-23) + +### Features +* add scoped package @nativescript/angular ([#2014](https://github.com/NativeScript/nativescript-angular/pull/2014)) + +### Bug Fixes + +* **animations:** resolve issue with "query animations" on iOS 13 ([#2022](https://github.com/NativeScript/nativescript-angular/issues/2022)) ([c382682](https://github.com/NativeScript/nativescript-angular/commit/c382682)) + ## [8.2.2](https://github.com/NativeScript/nativescript-angular/compare/8.2.1...8.2.2) (2019-10-16) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b42d49f3b..80bff2ab2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -101,8 +101,9 @@ In this case the commits should be merge firstly from release in master branch a 2. Execute `npm i` to install dependencies: ``` cd nativescript-angular && npm i +cd nativescript-angular-package && npm i ``` -3. Execute [`npm version`](https://docs.npmjs.com/cli/version) to bump the version: +3. Execute [`npm version`](https://docs.npmjs.com/cli/version) to bump the version in both `nativescript-angular` and `nativescript-angular-package` folders: ``` npm --no-git-tag-version version [patch|minor|major] -m "release: cut the %s release" ```