diff --git a/.gulp/tasks/bump.js b/.gulp/tasks/bump.js
index 0ad3a55..91c404a 100644
--- a/.gulp/tasks/bump.js
+++ b/.gulp/tasks/bump.js
@@ -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('./'));
});
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 79636b7..9f1f28a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,22 @@
-
-## [0.0.10](https://github.com/equinusocio/vsc-material-theme/compare/v0.0.9...v0.0.10) (2017-04-30)
+
+## [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))
+
+
+
+
+## [0.0.12](https://github.com/equinusocio/vsc-material-theme/compare/v0.0.9...v0.0.12) (2017-05-04)
diff --git a/package.json b/package.json
index 0097b24..3ddb063 100644
--- a/package.json
+++ b/package.json
@@ -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",