Skip to content

Commit

Permalink
4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bencroker committed Jan 12, 2024
1 parent 5ed5ffc commit 1fc82f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 4.4.1 - Unreleased
## 4.4.1 - 2024-01-12

### Fixed

Expand Down
6 changes: 3 additions & 3 deletions src/services/TestsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public function runTest(string $test): TestModel
'https://github.com/craftcms/cms/blob/develop/CHANGELOG.md#' . str_replace('.', '-', $release->version)
) . Html::tag(
'span',
'Version ' . $release->version . ' is a critical update, released on ' . $this->_formatDate($release->date),
'Version ' . $release->version . ' is a critical update, released on ' . $this->_formatDate($release->date) . '.',
['class' => 'info']
);
}
Expand Down Expand Up @@ -220,7 +220,7 @@ public function runTest(string $test): TestModel
['target' => '_blank'],
) . Html::tag(
'span',
'Version ' . $release->version . ' is a critical update, released on ' . $this->_formatDate($release->date),
'Version ' . $release->version . ' is a critical update, released on ' . $this->_formatDate($release->date) . '.',
['class' => 'info']
);
}
Expand Down Expand Up @@ -261,7 +261,7 @@ public function runTest(string $test): TestModel
['target' => '_blank'],
) . Html::tag(
'span',
'Local version ' . $plugin->version . ' is ' . count($update->releases) . ' release' . (count($update->releases) != 1 ? 's' : '') . ' behind latest version ' . $latestRelease->version . ', released on ' . $this->_formatDate($latestRelease->date),
'Local version ' . $plugin->version . ' is ' . count($update->releases) . ' release' . (count($update->releases) != 1 ? 's' : '') . ' behind latest version ' . $latestRelease->version . ', released on ' . $this->_formatDate($latestRelease->date) . '.',
['class' => 'info']
);
}
Expand Down

0 comments on commit 1fc82f3

Please sign in to comment.