Skip to content

Commit

Permalink
Bump version to 22.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
murrant committed Apr 22, 2022
1 parent 67a7aa9 commit 15feac7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LibreNMS/Util/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
class Version
{
// Update this on release
public const VERSION = '22.3.0';
public const VERSION = '22.4.0';

/**
* @var bool
Expand Down Expand Up @@ -67,7 +67,7 @@ public function local(): string
public function localCommit(): array
{
if ($this->is_git_install) {
[$local_sha, $local_date] = array_pad(explode('|', rtrim(`git show --pretty='%H|%ct' -s HEAD`), 2), 2, '');
[$local_sha, $local_date] = explode('|', rtrim(`git show --pretty='%H|%ct' -s HEAD`));

return [
'sha' => $local_sha,
Expand Down

0 comments on commit 15feac7

Please sign in to comment.