From b746a2fbac28f87a65b420d502e3a10a34775c61 Mon Sep 17 00:00:00 2001 From: webimpress Date: Thu, 13 Jul 2017 12:34:21 +0200 Subject: [PATCH] Added section "Changed" into changelog --- MAINTAINERS.md | 29 +++++++++++++++++++++++++++++ src/ChangelogBump.php | 1 + 2 files changed, 30 insertions(+) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index c2aeed6..945b640 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -183,6 +183,10 @@ we follow [Keep a CHANGELOG](http://keepachangelog.com/). The format is simple: - [#42](https://github.com/organization/project/pull/42) adds documentation! +### Changed + +- Nothing. + ### Deprecated - Nothing. @@ -359,6 +363,11 @@ Added - [#42](https://github.com/organization/project/pull/42) adds documentation! +Changed +------- + +- Nothing. + Deprecated ---------- @@ -532,6 +541,10 @@ version represented by the `master` branch: - Nothing. +### Changed + +- Nothing. + ### Deprecated - Nothing. @@ -550,6 +563,10 @@ version represented by the `master` branch: - Nothing. +### Changed + +- Nothing. + ### Deprecated - Nothing. @@ -589,6 +606,10 @@ branch's changelog. As an example, consider the following: - Useful features that everyone will want. +### Changed + +- Nothing. + ### Deprecated - Useless features that are no longer needed. @@ -607,6 +628,10 @@ branch's changelog. As an example, consider the following: - Nothing. +### Changed + +- Nothing. + ### Deprecated - Nothing. @@ -629,6 +654,10 @@ The above would be merged to a single changelog entry for 2.6.0 which would look - Useful features that everyone will want. +### Changed + +- Nothing. + ### Deprecated - Useless features that are no longer needed. diff --git a/src/ChangelogBump.php b/src/ChangelogBump.php index c04e8bf..6cb3fb0 100644 --- a/src/ChangelogBump.php +++ b/src/ChangelogBump.php @@ -110,6 +110,7 @@ private function updateChangelog($version) $changelog = sprintf("\n\n## %s - TBD\n\n", $version) . "### Added\n\n- Nothing.\n\n" + . "### Changed\n\n- Nothing.\n\n" . "### Deprecated\n\n- Nothing.\n\n" . "### Removed\n\n- Nothing.\n\n" . "### Fixed\n\n- Nothing.\n\n";