Release: 0.0.13

This commit is contained in:
Mattia Astorino 2017-05-10 10:24:04 +02:00
parent 1ddae875e6
commit aa6501cd7b
3 changed files with 24 additions and 7 deletions

View file

@ -29,9 +29,9 @@ Gulp.task('bump', (cb) => {
Gulp.task('bump-pkg-version', () => {
return Gulp.src(['./package.json'])
.pipe(gulpif((Object.keys(argv).length === 2), bump()))
.pipe(gulpif(argv.patch, bump()))
.pipe(gulpif(argv.minor, bump({ type: 'minor' })))
.pipe(gulpif(argv.major, bump({ type: 'major' })))
.pipe(Gulpif((Object.keys(argv).length === 2), bump()))
.pipe(Gulpif(argv.patch, bump()))
.pipe(Gulpif(argv.minor, bump({ type: 'minor' })))
.pipe(Gulpif(argv.major, bump({ type: 'major' })))
.pipe(Gulp.dest('./'));
});

View file

@ -1,5 +1,22 @@
<a name="0.0.10"></a>
## [0.0.10](https://github.com/equinusocio/vsc-material-theme/compare/v0.0.9...v0.0.10) (2017-04-30)
<a name="0.0.13"></a>
## [0.0.13](https://github.com/equinusocio/vsc-material-theme/compare/v0.0.12...v0.0.13) (2017-05-10)
### Bug Fixes
* Fix statusbar background when no project opened ([c15d054](https://github.com/equinusocio/vsc-material-theme/commit/c15d054)), closes [#27](https://github.com/equinusocio/vsc-material-theme/issues/27)
* Improve ansi colors (integrated terminal) ([45d6486](https://github.com/equinusocio/vsc-material-theme/commit/45d6486))
### Features
* Add build/dist folder icon ([3c8cfe9](https://github.com/equinusocio/vsc-material-theme/commit/3c8cfe9)), closes [#6](https://github.com/equinusocio/vsc-material-theme/issues/6)
* Improve worckbench theme ([6c19542](https://github.com/equinusocio/vsc-material-theme/commit/6c19542))
<a name="0.0.12"></a>
## [0.0.12](https://github.com/equinusocio/vsc-material-theme/compare/v0.0.9...v0.0.12) (2017-05-04)

View file

@ -2,7 +2,7 @@
"name": "vsc-material-theme",
"displayName": "Material Theme",
"description": "The most epic theme now for Visual Studio Code",
"version": "0.0.12",
"version": "0.0.13",
"preview": true,
"publisher": "Equinusocio",
"license": "Apache-2.0",