From 7ae0bb95145cf35efa0c18ee9271a5c1202172f8 Mon Sep 17 00:00:00 2001 From: Dmitriy Shekhovtsov Date: Wed, 24 Feb 2016 14:54:33 +0200 Subject: [PATCH] chore(docs): added changelog generation --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ package.json | 9 ++++++--- 2 files changed, 32 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..65943fec87 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,26 @@ + +## [1.0.4](https://github.com/valor-software/ng2-bootstrap/compare/1.0.1-beta.2...v1.0.4) (2016-02-24) + + +### Bug Fixes + +* **build:** fix npm start command, fixes #113 ([217fe3a](https://github.com/valor-software/ng2-bootstrap/commit/217fe3a)), closes [#113](https://github.com/valor-software/ng2-bootstrap/issues/113) +* **build:** rollback compression plugin version to 0.2, fixes #103 ([3d59e2d](https://github.com/valor-software/ng2-bootstrap/commit/3d59e2d)), closes [#103](https://github.com/valor-software/ng2-bootstrap/issues/103) +* "outsideClick" still closed the dropdown on any click ([6348f72](https://github.com/valor-software/ng2-bootstrap/commit/6348f72)), closes [#124](https://github.com/valor-software/ng2-bootstrap/issues/124) +* **build:** updated to use ts 1.8.2, fixes #116 ([206770b](https://github.com/valor-software/ng2-bootstrap/commit/206770b)), closes [#116](https://github.com/valor-software/ng2-bootstrap/issues/116) +* **datepicker:** setting default value for SHOW_WEEKS ([f0079ad](https://github.com/valor-software/ng2-bootstrap/commit/f0079ad)) +* **datepicker:** upgrade to beta 1, issue #38 ([b1a5507](https://github.com/valor-software/ng2-bootstrap/commit/b1a5507)) +* **export:** all the correct directives are now properly exported ([b00a30b](https://github.com/valor-software/ng2-bootstrap/commit/b00a30b)) +* **pager:** multiple times defined event numPages, fixes #111, closes #112 ([780eebd](https://github.com/valor-software/ng2-bootstrap/commit/780eebd)), closes [#111](https://github.com/valor-software/ng2-bootstrap/issues/111) [#112](https://github.com/valor-software/ng2-bootstrap/issues/112) +* **pagination:** multiple triggering of pageChanged event, fix #76, fix #138, closes #146 ([91c4ec4](https://github.com/valor-software/ng2-bootstrap/commit/91c4ec4)), closes [#76](https://github.com/valor-software/ng2-bootstrap/issues/76) [#138](https://github.com/valor-software/ng2-bootstrap/issues/138) [#146](https://github.com/valor-software/ng2-bootstrap/issues/146) + +### Features + +* allow two-way binding on `isOpen` ([674fcb7](https://github.com/valor-software/ng2-bootstrap/commit/674fcb7)) +* **build:** update to use ng2 beta7 & use ts typings, fixes #212 ([31e6300](https://github.com/valor-software/ng2-bootstrap/commit/31e6300)), closes [#212](https://github.com/valor-software/ng2-bootstrap/issues/212) +* **datepicker:** datepicker fixed for 0-beta.2, closes #120, fixes #38 ([a3d9e1c](https://github.com/valor-software/ng2-bootstrap/commit/a3d9e1c)), closes [#120](https://github.com/valor-software/ng2-bootstrap/issues/120) [#38](https://github.com/valor-software/ng2-bootstrap/issues/38) +* **dropdown:** implement "nonInput" auto-close mode ([94d9909](https://github.com/valor-software/ng2-bootstrap/commit/94d9909)) +* **tabs:** removable tabs ([c465610](https://github.com/valor-software/ng2-bootstrap/commit/c465610)) + + + diff --git a/package.json b/package.json index a8d5e09be4..0862918d86 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng2-bootstrap", - "version": "1.0.3", + "version": "1.0.4", "description": "angular2 bootstrap components", "scripts": { "postinstall": "./node_modules/.bin/typings install", @@ -14,7 +14,8 @@ "serve:prod": "NODE_ENV=production ./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached", "start": "npm run serve:dev", "pretest": "./node_modules/.bin/gulp lint", - "test": "NODE_ENV=test ./node_modules/.bin/karma start" + "test": "NODE_ENV=test ./node_modules/.bin/karma start", + "write-changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -p angular" }, "main": "ng2-bootstrap.js", "typings": "ng2-bootstrap.d.ts", @@ -45,7 +46,9 @@ "async": "1.5.2", "balanced-match": "0.3.0", "bootstrap": "3.3.6", - "compression-webpack-plugin": "0.3.0", + "compression-webpack-plugin": "0.2.0", + "conventional-changelog": "1.1.0", + "conventional-changelog-cli": "1.1.1", "copy-webpack-plugin": "1.1.1", "del": "2.2.0", "es6-promise": "3.1.2",