Skip to content

Commit 0cd5a5e

Browse files
authored
Merge pull request #1262 from hydephp/release-candidate-four
HydePHP v1.0.0 - Release Candidate Four
2 parents b6aafea + d23d3fa commit 0cd5a5e

File tree

5 files changed

+32
-17
lines changed

5 files changed

+32
-17
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,30 @@ HydePHP consists of two primary components, Hyde/Hyde and Hyde/Framework. Develo
1616

1717
<!-- CHANGELOG_START -->
1818

19+
## [v1.0.0-RC.4](https://github.com/hydephp/develop/releases/tag/v1.0.0-RC.4) - 2023-03-12
20+
21+
### Added
22+
- Added new method `HydePage::getCanonicalUrl()` to replace deprecated `HydePage::$canonicalUrl` property.
23+
24+
### Changed
25+
- Added default RSS feed description value to the config stub in [#1253](https://github.com/hydephp/develop/pull/1253)
26+
- Changed the RSS feed configuration structure to be an array of feed configurations in [#1258](https://github.com/hydephp/develop/pull/1258)
27+
- Replaced option `hyde.generate_rss_feed` with `hyde.rss.enabled`
28+
- Replaced option `hyde.rss_filename` with `hyde.rss.filename`
29+
- Replaced option `hyde.rss_description` with `hyde.rss.description`
30+
31+
### Removed
32+
- Removed `RouteKey::normalize` method deprecated in v1.0.0-RC.2
33+
- Removed `RenderData:.getCurrentPage` method deprecated in v1.0.0-RC.2
34+
- Removed `RenderData:.getCurrentRoute` method deprecated in v1.0.0-RC.2
35+
- Removed deprecated `HydePage::$canonicalUrl` property (replaced with `HydePage::getCanonicalUrl()`).
36+
- Removed deprecated `SourceFile::withoutDirectoryPrefix` method only used in one test.
37+
- Removed deprecated `CreatesNewPageSourceFile::getOutputPath` method as the save method now returns the path.
38+
39+
### Fixed
40+
- Fixed the blog post article view where metadata assembly used legacy hard-coded paths instead of dynamic path information.
41+
42+
1943
## [v1.0.0-RC.3](https://github.com/hydephp/develop/releases/tag/v1.0.0-RC.3) - 2023-03-11
2044

2145
### Changed

RELEASE_NOTES.md

+4-13
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,19 @@ This serves two purposes:
1010
2. At release time, you can move the Unreleased section changes into a new release version section.
1111

1212
### Added
13-
- Added new method `HydePage::getCanonicalUrl()` to replace deprecated `HydePage::$canonicalUrl` property.
13+
- for new features.
1414

1515
### Changed
16-
- Added default RSS feed description value to the config stub in [#1253](https://github.com/hydephp/develop/pull/1253)
17-
- Changed the RSS feed configuration structure to be an array of feed configurations in [#1258](https://github.com/hydephp/develop/pull/1258)
18-
- Replaced option `hyde.generate_rss_feed` with `hyde.rss.enabled`
19-
- Replaced option `hyde.rss_filename` with `hyde.rss.filename`
20-
- Replaced option `hyde.rss_description` with `hyde.rss.description`
16+
- for changes in existing functionality.
2117

2218
### Deprecated
2319
- for soon-to-be removed features.
2420

2521
### Removed
26-
- Removed `RouteKey::normalize` method deprecated in v1.0.0-RC.2
27-
- Removed `RenderData:.getCurrentPage` method deprecated in v1.0.0-RC.2
28-
- Removed `RenderData:.getCurrentRoute` method deprecated in v1.0.0-RC.2
29-
- Removed deprecated `HydePage::$canonicalUrl` property (replaced with `HydePage::getCanonicalUrl()`).
30-
- Removed deprecated `SourceFile::withoutDirectoryPrefix` method only used in one test.
31-
- Removed deprecated `CreatesNewPageSourceFile::getOutputPath` method as the save method now returns the path.
22+
- for now removed features.
3223

3324
### Fixed
34-
- Fixed the blog post article view where metadata assembly used legacy hard-coded paths instead of dynamic path information.
25+
- for any bug fixes.
3526

3627
### Security
3728
- in case of vulnerabilities.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"name": "hyde",
99
"description": "Elegant and Powerful Static App Builder",
10-
"version": "1.0.0-RC.3",
10+
"version": "1.0.0-RC.4",
1111
"main": "hyde",
1212
"directories": {
1313
"test": "tests"

packages/framework/src/Foundation/HydeKernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class HydeKernel implements SerializableContract
4949
use Serializable;
5050
use Macroable;
5151

52-
final public const VERSION = '1.0.0-RC.3';
52+
final public const VERSION = '1.0.0-RC.4';
5353

5454
protected static self $instance;
5555

0 commit comments

Comments
 (0)