Skip to content

Commit

Permalink
docs: adds CHANGELOG entries for 1.0.0 release
Browse files Browse the repository at this point in the history
Also blocks CHANGELOG from being in tarballs or the created project,
since it is specific to the package, not the projects built with it.

Signed-off-by: Matthew Weier O'Phinney <matthew@weierophinney.net>
  • Loading branch information
weierophinney committed Sep 14, 2020
1 parent 0dd4c69 commit e74fe68
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/.github/ export-ignore
/bin/remove-package-artifacts.php export-ignore
/CHANGELOG.md
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,28 @@ All notable changes to this project will be documented in this file, in reverse

## 1.0.0 - TBD

This is the initial 1.0.0 release under the Laminas organization.

### Added

- Nothing.
- Adds descriptions for shipped Composer commands.

### Changed

- Nothing.
- Bumps the minimum supported PHP version to 7.3.

- Improves the shipped Dockerfile and default extensions available.

### Deprecated

- Nothing.

### Removed

- Nothing.
- Removes the `public/index.html` page, which could lead to display of the default Apache2 landing page.

### Fixed

- Nothing.
- Ensures initial page presentation looks as expected, including logo display, no duplication, proper 404 display, etc.

- Ensures Zend Framework is no longer referenced in all commands, documentation, and default pages.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@
"post-create-project-cmd": [
"@development-enable",
"php bin/update-gitignore.php",
"php -r 'if (file_exists(\"bin/remove-package-artifacts.php\")) include \"bin/remove-package-artifacts.php\";'"
"php -r 'if (file_exists(\"bin/remove-package-artifacts.php\")) include \"bin/remove-package-artifacts.php\";'",
"php -r 'if (file_exists(\"CHANGELOG.md\")) unlink(\"CHANGELOG.md\");'"
],
"serve": "php -S 0.0.0.0:8080 -t public",
"test": "phpunit"
Expand Down

0 comments on commit e74fe68

Please sign in to comment.