Skip to content

Commit 6f8abfb

Browse files
committed
Fix wrong HydeFront version constant
1 parent 481eda1 commit 6f8abfb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/framework/src/Framework/Services/AssetService.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
class AssetService
3232
{
3333
/** @var string The default HydeFront SemVer tag to load. This constant is set to match the styles used for the installed framework version. */
34-
final public const HYDEFRONT_VERSION = 'v2.0';
34+
final public const HYDEFRONT_VERSION = 'v3.0';
3535

3636
/** @var string The default HydeFront CDN path pattern. The Blade-style placeholders are replaced with the proper values. */
3737
final public const HYDEFRONT_CDN_URL = 'https://cdn.jsdelivr.net/npm/hydefront@{{ $version }}/dist/{{ $file }}';

packages/framework/tests/Unit/AssetServiceUnitTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected function setUp(): void
2222

2323
public function testVersionStringConstant()
2424
{
25-
$this->assertSame('v2.0', AssetService::HYDEFRONT_VERSION);
25+
$this->assertSame('v3.0', AssetService::HYDEFRONT_VERSION);
2626
}
2727

2828
public function testServiceHasVersionString()

0 commit comments

Comments
 (0)