diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index bec8cc30002..8838fdf4b94 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -14,7 +14,7 @@ This serves two purposes: - Added `prose-img:inline` to bundled TailwindCSS classes in https://github.com/hydephp/develop/pull/1359 ### Changed -- for changes in existing functionality. +- Internal: Decoupled the monorepo `composer.json` settings in https://github.com/hydephp/develop/pull/1361 ### Deprecated - for soon-to-be removed features. diff --git a/composer.json b/composer.json index 40dad74b17f..cfeffcdc7dd 100644 --- a/composer.json +++ b/composer.json @@ -1,13 +1,12 @@ { - "name": "hyde/hyde", - "description": "Static Site Generator to rapidly create Blogs, Documentation, and more, using Markdown and Blade.", - "keywords": ["framework", "hyde", "hyde framework"], + "name": "hyde/monorepo", + "description": "The HydePHP source code monorepo.", "homepage": "https://hydephp.com", "type": "project", "license": "MIT", "support": { - "issues": "https://github.com/hydephp/hyde/issues", - "source": "https://github.com/hydephp/hyde" + "issues": "https://github.com/hydephp/develop/issues", + "source": "https://github.com/hydephp/develop" }, "authors": [ { diff --git a/composer.lock b/composer.lock index cca1982db1f..0e85ba3c0ad 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "d13fdebb0012781fa14004703bb937d9", + "content-hash": "1079329c91d1cb29d3a8e38b2c29f27d", "packages": [ { "name": "brick/math", diff --git a/packages/framework/src/Console/Commands/DebugCommand.php b/packages/framework/src/Console/Commands/DebugCommand.php index c089dfc6e75..95e82ffdbc8 100644 --- a/packages/framework/src/Console/Commands/DebugCommand.php +++ b/packages/framework/src/Console/Commands/DebugCommand.php @@ -39,7 +39,7 @@ public function handle(): int $this->newLine(); $this->comment('Git Version: '.(string) app('git.version')); - $this->comment('Hyde Version: '.(InstalledVersions::getPrettyVersion('hyde/hyde') ?: 'unreleased')); + $this->comment('Hyde Version: '.((InstalledVersions::isInstalled('hyde/hyde') ? InstalledVersions::getPrettyVersion('hyde/hyde') : null) ?: 'unreleased')); $this->comment('Framework Version: '.(InstalledVersions::getPrettyVersion('hyde/framework') ?: 'unreleased')); $this->newLine();