From c934f3a38da4e7234d9dba3b2405f3b7e4dc5aa8 Mon Sep 17 00:00:00 2001 From: Pierrick V Date: Thu, 16 Jan 2020 04:59:55 +0100 Subject: [PATCH] fix!: composer.json and composer.lock have been removed from default package and bump files. - No need to bump version for `composer` as it relies on VCS tag to infer version (#495) - Closes #394 BREAKING CHANGE: `composer.json` and `composer.lock` will no longer be read from or bumped by default. If you need to obtain a version or write a version to these files, please use `bumpFiles` and/or `packageFiles` options accordingly. --- defaults.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/defaults.js b/defaults.js index dd9c684ef..614c453e4 100644 --- a/defaults.js +++ b/defaults.js @@ -32,14 +32,12 @@ defaults.header = '# Changelog\n\nAll notable changes to this project will be do defaults.packageFiles = [ 'package.json', 'bower.json', - 'manifest.json', - 'composer.json' + 'manifest.json' ] defaults.bumpFiles = defaults.packageFiles.concat([ 'package-lock.json', - 'npm-shrinkwrap.json', - 'composer.lock' + 'npm-shrinkwrap.json' ]) module.exports = defaults