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

HydePHP v1.0.0 - Release Candidate Seven #1282

Merged
merged 1 commit into from
Mar 14, 2023
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ HydePHP consists of two primary components, Hyde/Hyde and Hyde/Framework. Develo

<!-- CHANGELOG_START -->

## [v1.0.0-RC.7](https://github.com/hydephp/develop/releases/tag/v1.0.0-RC.7) - 2023-03-14

### Added
- Added generics to the Hyde facade method annotations https://github.com/hydephp/develop/pull/1280

### Changed
- Updated 404 page home link to use the index route instead of the site URL https://github.com/hydephp/develop/pull/1278
- Improved generic type usage in the RegisterFileLocations trait https://github.com/hydephp/develop/pull/1279
- Bumped HydeFront to v3.1 https://github.com/hydephp/develop/pull/1281


## [v1.0.0-RC.6](https://github.com/hydephp/develop/releases/tag/v1.0.0-RC.6) - 2023-03-14

### Removed
Expand Down
6 changes: 2 additions & 4 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@ This serves two purposes:
2. At release time, you can move the Unreleased section changes into a new release version section.

### Added
- Added generics to the Hyde facade method annotations https://github.com/hydephp/develop/pull/1280
- for new features.

### Changed
- Updated 404 page home link to use the index route instead of the site URL https://github.com/hydephp/develop/pull/1278
- Improved generic type usage in the RegisterFileLocations trait https://github.com/hydephp/develop/pull/1279
- Bumped HydeFront to v3.1 https://github.com/hydephp/develop/pull/1281
- for changes in existing functionality.

### Deprecated
- for soon-to-be removed features.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"name": "hyde",
"description": "Elegant and Powerful Static App Builder",
"version": "1.0.0-RC.6",
"version": "1.0.0-RC.7",
"main": "hyde",
"directories": {
"test": "tests"
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/src/Foundation/HydeKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class HydeKernel implements SerializableContract
use Serializable;
use Macroable;

final public const VERSION = '1.0.0-RC.6';
final public const VERSION = '1.0.0-RC.7';

protected static self $instance;

Expand Down