Auto commit for release 'v6.1.24' on 2024-11-23

This commit is contained in:
github-actions 2024-11-23 21:07:01 +01:00
parent b61df5ec19
commit 17b0b1f43f
3 changed files with 4 additions and 3 deletions

View File

@ -158,8 +158,9 @@ class Installer
// version compare thing.
$configVersion = (string)config('firefly.version');
$dbVersion = (string)app('fireflyconfig')->getFresh('ff3_version', '1.0')->data;
if(str_starts_with($configVersion, 'develop')) {
if (str_starts_with($configVersion, 'develop')) {
Log::debug('Skipping version check for develop version.');
return false;
}
if (1 === version_compare($configVersion, $dbVersion)) {

View File

@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- #9491
- [Issue 9491](https://github.com/firefly-iii/firefly-iii/issues/9491) (Transactions created at midnight on the first day of a month are not listed correctly) reported by @Neroxeles
## 6.1.23 - 2024-11-23

View File

@ -110,7 +110,7 @@ return [
'running_balance_column' => env('USE_RUNNING_BALANCE', false),
// see cer.php for exchange rates feature flag.
],
'version' => '6.1.23',
'version' => '6.1.24',
'api_version' => '2.1.0', // field is no longer used.
'db_version' => 25,