Skip to content

Commit

Permalink
Merge pull request #567 from hydephp/develop
Browse files Browse the repository at this point in the history
HydePHP v1.0.0 - Release Candidate Six
  • Loading branch information
caendesilva authored Mar 14, 2023
2 parents 206e2b0 + 8917166 commit c7f48e4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config/hyde.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
// Meta::name('twitter:creator', '@HydeFramework'),
// Meta::name('description', 'My Hyde Blog'),
// Meta::name('keywords', 'Static Sites, Blogs, Documentation'),
Meta::name('generator', 'HydePHP '.Hyde\Hyde::version()),
Meta::name('generator', 'HydePHP v'.Hyde\Hyde::version()),
Meta::property('site_name', env('SITE_NAME', 'HydePHP')),
],

Expand Down
2 changes: 1 addition & 1 deletion 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.5';
final public const VERSION = '1.0.0-RC.6';

protected static self $instance;

Expand Down
12 changes: 6 additions & 6 deletions src/Hyde.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @copyright 2022 Caen De Silva
* @license MIT License
*
* @method static string path(string $path = '') $basePath
* @method static string path(string $path = '')
* @method static string vendorPath(string $path = '', string $package = 'framework')
* @method static string pathToAbsolute(string $path)
* @method static string pathToRelative(string $path)
Expand All @@ -43,11 +43,11 @@
* @method static string trimSlashes(string $string)
* @method static HtmlString markdown(string $text, bool $stripIndentation = false)
* @method static string currentPage()
* @method static string getBasePath() $basePath
* @method static string getSourceRoot() ''
* @method static string getOutputDirectory() '_site'
* @method static string getMediaDirectory() '_media'
* @method static string getMediaOutputDirectory() 'media'
* @method static string getBasePath()
* @method static string getSourceRoot()
* @method static string getOutputDirectory()
* @method static string getMediaDirectory()
* @method static string getMediaOutputDirectory()
* @method static Features features()
* @method static FileCollection files()
* @method static PageCollection pages()
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/MetadataViewTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protected function getDefaultTags(): array
'<meta name="viewport" content="width=device-width, initial-scale=1">',
'<meta id="meta-color-scheme" name="color-scheme" content="light">',
'<link rel="sitemap" href="http://localhost/sitemap.xml" type="application/xml" title="Sitemap">',
'<meta name="generator" content="HydePHP '.HydeKernel::VERSION.'">',
'<meta name="generator" content="HydePHP v'.HydeKernel::VERSION.'">',
'<meta property="og:site_name" content="HydePHP">',
];
}
Expand Down

0 comments on commit c7f48e4

Please sign in to comment.