build(zone.js): update gulp task to gen changelog automatically (#31915)

PR Close #31915
This commit is contained in:
JiaLiPassion
2019-08-01 13:41:37 -06:00
committed by Alex Rickabaugh
parent fa4e17082c
commit 2a6e6c02ed
3 changed files with 21 additions and 12 deletions

View File

@ -1,5 +1,5 @@
<a name="0.10.1"></a>
# [0.10.1](https://github.com/angular/angular/compare/zone.js-0.10.0...zone.js-0.10.1) (2019-07-30)
## [0.10.1](https://github.com/angular/angular/compare/zone.js-0.10.0...zone.js-0.10.1) (2019-08-02)
### Bug Fixes

View File

@ -80,17 +80,19 @@ yarn webdriver-sauce-test
Releasing
---------
- create a new tag in `angular` repo.
For example, the current version is `0.9.1`, and we want to release a new version `0.10.0`.
- create a new tag in `angular` repo. The `tag` must be `zone.js-<version>`, so in this example we need to create the tag `zone.js-0.10.0`.
```
$ TAG=<TAG>
$ TAG=zone.js-0.10.0
$ git tag $TAG
```
- create a PR to update `changelog` of zone.js
- Create PR to update `changelog` of zone.js, we need to define the previous tag which will be the current version.
```
$ export PREVIOUS_ZONE_TAG=<PREVIOUS ZONE RELEASE TAG>
$ export PREVIOUS_ZONE_TAG=zone.js-0.9.1
$ yarn gulp changelog:zonejs
```