Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds CHANGELOG entries for 1.0.0 release #25

Merged
merged 1 commit into from
Sep 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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