diff --git a/CHANGELOG.md b/CHANGELOG.md index 923b988f1..bce1ab1cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # gulp changelog +# 3.8.0 + +- update vinyl-fs + - gulp.src is now a writable passthrough, this means you can use it to add files to your pipeline at any point + - gulp.dest can now take a function to determine the folder + +This is now possible! + +```js +gulp.src('lib/*.js') + .pipe(uglify()) + .pipe(gulp.src('styles/*.css')) + .pipe(gulp.dest(function(file){ + // i dont know, you can do something cool here + return 'build/whatever'; + })); +``` + # 3.7.0 - update vinyl-fs to remove BOM from UTF8 files diff --git a/package.json b/package.json index 9e0d93719..5518c96d9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gulp", "description": "The streaming build system", - "version": "3.7.0", + "version": "3.8.0", "homepage": "http://gulpjs.com", "repository": "gulpjs/gulp", "author": "Fractal (http://wearefractal.com/)", @@ -35,7 +35,7 @@ "pretty-hrtime": "^0.2.0", "semver": "^2.2.1", "tildify": "^0.2.0", - "vinyl-fs": "^0.2.0" + "vinyl-fs": "^0.3.0" }, "devDependencies": { "coveralls": "^2.7.0",