Skip to content

Commit

Permalink
bump versionn umber
Browse files Browse the repository at this point in the history
  • Loading branch information
tobimori committed Jan 26, 2024
1 parent 5833457 commit c01af51
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tobimori/kirby-seo",
"description": "The ultimate Kirby SEO toolkit",
"type": "kirby-plugin",
"version": "1.0.0-beta.3",
"version": "1.0.0-rc.1",
"license": "MIT",
"homepage": "https://github.com/tobimori/kirby-seo#readme",
"authors": [
Expand Down
9 changes: 7 additions & 2 deletions config/hooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
return [
'page.render:before' => function (string $contentType, array $data, Page $page) {
if (option('tobimori.seo.generateSchema')) {
$page->schema('WebSite')->url($page->metadata()->canonicalUrl())->copyrightYear(date('Y'))->description($page->metadata()->metaDescription())->name($page->metadata()->metaTitle())->headline($page->metadata()->title());
$page->schema('WebSite')
->url($page->metadata()->canonicalUrl())
->copyrightYear(date('Y'))
->description($page->metadata()->metaDescription())
->name($page->metadata()->metaTitle())
->headline($page->metadata()->title());
}
}
},
];
8 changes: 4 additions & 4 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php return array(
'root' => array(
'name' => 'tobimori/kirby-seo',
'pretty_version' => '1.0.0-beta.3',
'version' => '1.0.0.0-beta3',
'pretty_version' => '1.0.0-rc.1',
'version' => '1.0.0.0-RC1',
'reference' => NULL,
'type' => 'kirby-plugin',
'install_path' => __DIR__ . '/../../',
Expand All @@ -29,8 +29,8 @@
'dev_requirement' => false,
),
'tobimori/kirby-seo' => array(
'pretty_version' => '1.0.0-beta.3',
'version' => '1.0.0.0-beta3',
'pretty_version' => '1.0.0-rc.1',
'version' => '1.0.0.0-RC1',
'reference' => NULL,
'type' => 'kirby-plugin',
'install_path' => __DIR__ . '/../../',
Expand Down

0 comments on commit c01af51

Please sign in to comment.