Skip to content

Commit

Permalink
chore: output unreleased when publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
aadityataparia committed Jun 6, 2019
1 parent 3394835 commit 1204b3e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## [0.0.6](https://github.com/sifrr/sifrr-dev/compare/v0.0.5...v0.0.6) (2019-06-06 08:59:31 +0000)


### Bug Fixes

* output last version if ouputunreleased ([30ab08e](https://github.com/sifrr/sifrr-dev/commit/30ab08e))
* sifrr server using same type ([9730c60](https://github.com/sifrr/sifrr-dev/commit/9730c60))


### Features

* add object select ([ba309cb](https://github.com/sifrr/sifrr-dev/commit/ba309cb))
* add option to exec to use spawn manually ([cc5da3a](https://github.com/sifrr/sifrr-dev/commit/cc5da3a))
* start server and browser only if folder exists ([a186892](https://github.com/sifrr/sifrr-dev/commit/a186892))



## [0.0.5](https://github.com/sifrr/sifrr-dev/compare/v0.0.4...v0.0.5) (2019-06-04 18:11:05 +0000)


Expand Down
4 changes: 3 additions & 1 deletion scripts/publish
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ const exec = require('../src/exec');
(async function() {
const exists = await require('../src/checktag')();
if (exists) return;
await require('../src/generatechangelog')();
await require('../src/generatechangelog')({
outputUnreleased: true
});
await require('../src/gitaddcommitpush')({
files: ['CHANGELOG.md'],
commitMsg: 'chore: update changelog'
Expand Down

0 comments on commit 1204b3e

Please sign in to comment.