Skip to content

Commit

Permalink
chore: release v1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Aug 4, 2024
1 parent 1e5c91c commit c828900
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 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": "johannschopplich/kirby-copilot",
"description": "AI-powered content generation for Kirby CMS",
"type": "kirby-plugin",
"version": "1.8.2",
"version": "1.8.3",
"keywords": [
"ai",
"content",
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

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
@@ -1,7 +1,7 @@
{
"name": "kirby-copilot",
"type": "module",
"version": "1.8.2",
"version": "1.8.3",
"private": true,
"packageManager": "pnpm@9.5.0",
"scripts": {
Expand Down
14 changes: 7 additions & 7 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,23 +52,23 @@
},
{
"name": "johannschopplich/kirby-tools-licensing",
"version": "0.5.0",
"version_normalized": "0.5.0.0",
"version": "0.5.1",
"version_normalized": "0.5.1.0",
"source": {
"type": "git",
"url": "https://github.com/kirby-tools/licensing-backend.git",
"reference": "a8ac9a672c554e0d6694a5c11d631c40cb24c6ef"
"reference": "9d50ebdd2643d4960186288017ba36d2126133ce"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/kirby-tools/licensing-backend/zipball/a8ac9a672c554e0d6694a5c11d631c40cb24c6ef",
"reference": "a8ac9a672c554e0d6694a5c11d631c40cb24c6ef",
"url": "https://api.github.com/repos/kirby-tools/licensing-backend/zipball/9d50ebdd2643d4960186288017ba36d2126133ce",
"reference": "9d50ebdd2643d4960186288017ba36d2126133ce",
"shasum": ""
},
"require-dev": {
"getkirby/cms": "^4"
},
"time": "2024-08-04T07:19:39+00:00",
"time": "2024-08-04T07:29:50+00:00",
"type": "library",
"extra": {
"kirby-cms-path": false
Expand All @@ -94,7 +94,7 @@
"homepage": "https://github.com/kirby-tools/licensing-backend#readme",
"support": {
"issues": "https://github.com/kirby-tools/licensing-backend/issues",
"source": "https://github.com/kirby-tools/licensing-backend/tree/v0.5.0"
"source": "https://github.com/kirby-tools/licensing-backend/tree/v0.5.1"
},
"install-path": "../johannschopplich/kirby-tools-licensing"
}
Expand Down
14 changes: 7 additions & 7 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' => 'johannschopplich/kirby-copilot',
'pretty_version' => '1.8.2',
'version' => '1.8.2.0',
'pretty_version' => '1.8.3',
'version' => '1.8.3.0',
'reference' => null,
'type' => 'kirby-plugin',
'install_path' => __DIR__ . '/../../',
Expand All @@ -20,18 +20,18 @@
'dev_requirement' => false,
),
'johannschopplich/kirby-copilot' => array(
'pretty_version' => '1.8.2',
'version' => '1.8.2.0',
'pretty_version' => '1.8.3',
'version' => '1.8.3.0',
'reference' => null,
'type' => 'kirby-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev_requirement' => false,
),
'johannschopplich/kirby-tools-licensing' => array(
'pretty_version' => '0.5.0',
'version' => '0.5.0.0',
'reference' => 'a8ac9a672c554e0d6694a5c11d631c40cb24c6ef',
'pretty_version' => '0.5.1',
'version' => '0.5.1.0',
'reference' => '9d50ebdd2643d4960186288017ba36d2126133ce',
'type' => 'library',
'install_path' => __DIR__ . '/../johannschopplich/kirby-tools-licensing',
'aliases' => array(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "johannschopplich/kirby-tools-licensing",
"description": "Shared tooling for licensing server-side",
"type": "library",
"version": "0.5.0",
"version": "0.5.1",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/kirby-tools/licensing-backend#readme",
"authors": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,10 @@ private function migration(): void

private function refresh(): void
{
// If the plugin version has changed, update the license data
// If the plugin version has changed, refresh the license data for the package
if (
$this->isValid($this->getLicenseKey()) &&
$this->getPluginVersion() !== $this->licenses[$this->packageName]['pluginVersion'] ?? null
$this->getPluginVersion() !== ($this->licenses[$this->packageName]['pluginVersion'] ?? null)
) {
$response = $this->request('licenses/' . $this->getLicenseKey() . '/package');
$this->update($this->packageName, $response);
Expand Down

0 comments on commit c828900

Please sign in to comment.