From 77662d2806a3a5c1356cc2a0b5969f655d4cc8b6 Mon Sep 17 00:00:00 2001 From: Oleg Pimenov Date: Wed, 13 Mar 2019 15:00:50 +0300 Subject: [PATCH] chore: bump version to 1.0.0-beta.4 w/ changelog --- CHANGELOG.md | 18 ++++++++++++++++++ package.json | 2 +- tools/release/stage-release.ts | 4 +--- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b235ed52e..df31118c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# 1.0.0-beta.4 "Plaited Nome" (2019-03-13) + + +### Bug Fixes + +* **moment-date-adapter:** relative date tests fixes ([#98](https://github.com/positive-js/mosaic/issues/98)) ([a16deb2](https://github.com/positive-js/mosaic/commit/a16deb2)) +* **tree-select:** fixed error for test unit ([#96](https://github.com/positive-js/mosaic/issues/96)) ([e7af9ca](https://github.com/positive-js/mosaic/commit/e7af9ca)) +* compilation es2015 ([6965069](https://github.com/positive-js/mosaic/commit/6965069)) + + +### Features + +* **build:** added AoT dev example application ([#99](https://github.com/positive-js/mosaic/issues/99)) ([d81764c](https://github.com/positive-js/mosaic/commit/d81764c)) +* **cdk:** accordion item ([5167225](https://github.com/positive-js/mosaic/commit/5167225)) +* **tree-select:** component tree-select ([#92](https://github.com/positive-js/mosaic/issues/92)) ([dc52656](https://github.com/positive-js/mosaic/commit/dc52656)) + + + # 1.0.0-beta.3 "Monoxide Core" (2019-02-25) diff --git a/package.json b/package.json index 1e0920229..578dde3f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mosaic", - "version": "1.0.0-beta.3", + "version": "1.0.0-beta.4", "description": "Components for Angular", "homepage": "https://github.com/positive-js/mosaic", "bugs": "https://github.com/positive-js/mosaic/issues", diff --git a/tools/release/stage-release.ts b/tools/release/stage-release.ts index 207a00781..0342dd1c4 100644 --- a/tools/release/stage-release.ts +++ b/tools/release/stage-release.ts @@ -75,9 +75,7 @@ class StageReleaseTask extends BaseReleaseTask { process.exit(1); } - this.githubApi = new OctokitApi(); - - this.githubApi.authenticate({ + this.githubApi = new OctokitApi({ type: 'token', token: CONFIG.github.token });