diff --git a/SECURITY.md b/SECURITY.md index 22c2b80..8d9ed5b 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,27 +2,19 @@ ## Supported Versions -### Hyde is currently in Beta and has no supported versions. - -Versions in the 0.x series are not stable and may change at any time. -No backwards compatibility guarantees are made and there will be breaking changes without notice. +These are the version ranges of HydePHP, and their support status. We follow [Semantic Versioning](https://semver.org), and you can read about our [Backwards Compatability](https://github.com/hydephp/policies/blob/master/backwards-compatability.md) promise here. | Version | Supported | Classification | |---------|-----------|---------------------------| -| > 0.64 | :warning: | Beta (active development) | +| 1.x | :white_check_mark: | General Availability | +| > 0.64 | :warning: | Beta (legacy) | | < 0.64 | :x: | Beta (legacy) | | < 0.8 | :x: | Alpha stage | - - - ## Reporting a Vulnerability If you discover a security vulnerability within this package, please send an e-mail to the creator, Caen De Silva, via caen@desilva.se. +You can also report a vulnerability through GitHub on the [Security Advisory](https://github.com/hydephp/develop/security/advisories) page. All security vulnerabilities will be promptly addressed. diff --git a/config/hyde.php b/config/hyde.php index a2315c9..78477ea 100644 --- a/config/hyde.php +++ b/config/hyde.php @@ -108,14 +108,16 @@ | */ - // Should the RSS feed be generated? - 'generate_rss_feed' => true, + 'rss' => [ + // Should the RSS feed be generated? + 'enabled' => true, - // What filename should the RSS file use? - 'rss_filename' => 'feed.xml', + // What filename should the RSS file use? + 'filename' => 'feed.xml', - // The channel description. By default this is "Site Name + RSS Feed". - // 'rss_description' => '', + // The channel description. + 'description' => env('SITE_NAME', 'HydePHP').' RSS Feed', + ], /* |-------------------------------------------------------------------------- diff --git a/package.json b/package.json index 00f6c3d..6a8c07d 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "name": "hyde", "description": "Elegant and Powerful Static App Builder", - "version": "1.0.0-RC.3", + "version": "1.0.0-RC.4", "main": "hyde", "directories": { "test": "tests"