Skip to content

Commit

Permalink
Hotfix v0.14.0 beta3 (#1017)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjustesen authored Dec 24, 2023
1 parent 49008d0 commit 72e2a83
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function getName(): string
public function getVersion(): string
{
return app()->isProduction()
? app(new SystemChecker)->getLocalVersion()
? (new SystemChecker)->getLocalVersion()
: config('app.env');
}
}
2 changes: 1 addition & 1 deletion app/Services/SystemChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function isOutOfDate()
{
$this->getVersions();

return 'v'.$this->localVersion != $this->remoteVersion;
return $this->localVersion != $this->remoteVersion;
}

public function flushVersionData()
Expand Down
4 changes: 2 additions & 2 deletions config/speedtest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
/**
* Build information
*/
'build_date' => Carbon::parse('2023-12-23'),
'build_date' => Carbon::parse('2023-12-24'),

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

/**
* General
Expand Down

0 comments on commit 72e2a83

Please sign in to comment.