Skip to content

Commit 72e2a83

Browse files
authored
Hotfix v0.14.0 beta3 (alexjustesen#1017)
1 parent 49008d0 commit 72e2a83

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/Filament/VersionProviders/SpeedtestTrackerVersionProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function getName(): string
1313
public function getVersion(): string
1414
{
1515
return app()->isProduction()
16-
? app(new SystemChecker)->getLocalVersion()
16+
? (new SystemChecker)->getLocalVersion()
1717
: config('app.env');
1818
}
1919
}

app/Services/SystemChecker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function isOutOfDate()
4040
{
4141
$this->getVersions();
4242

43-
return 'v'.$this->localVersion != $this->remoteVersion;
43+
return $this->localVersion != $this->remoteVersion;
4444
}
4545

4646
public function flushVersionData()

config/speedtest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
/**
77
* Build information
88
*/
9-
'build_date' => Carbon::parse('2023-12-23'),
9+
'build_date' => Carbon::parse('2023-12-24'),
1010

11-
'build_version' => '0.14.2-beta2',
11+
'build_version' => 'v0.14.2-beta3',
1212

1313
/**
1414
* General

0 commit comments

Comments
 (0)