Skip to content

Commit

Permalink
Merge release notes stub into release script
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Aug 1, 2022
1 parent 7cc4e4f commit 2f7bec0
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 29 deletions.
28 changes: 0 additions & 28 deletions projects/release-manager/release-notes.stub

This file was deleted.

30 changes: 29 additions & 1 deletion projects/release-manager/release.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,35 @@
echo "Done. \n";

echo 'Resetting upcoming release notes stub';
copy(__DIR__.'/release-notes.stub', __DIR__.'/../../RELEASE_NOTES.md');
file_put_contents(__DIR__.'/../../RELEASE_NOTES.md', '## [Unreleased] - YYYY-MM-DD
### About
Keep an Unreleased section at the top to track upcoming changes.
This serves two purposes:
1. People can see what changes they might expect in upcoming releases
2. At release time, you can move the Unreleased section changes into a new release version section.
### Added
- for new features.
### Changed
- for changes in existing functionality.
### Deprecated
- for soon-to-be removed features.
### Removed
- for now removed features.
### Fixed
- for any bug fixes.
### Security
- in case of vulnerabilities.
');

echo 'Updating changelog with the upcoming release notes... ';

Expand Down

0 comments on commit 2f7bec0

Please sign in to comment.