chore(release): bump default version to 4.3.1

This commit is contained in:
Andras Bacsai 2026-08-12 12:27:08 +02:00
parent ec7659aa59
commit 8c88f6093a
2 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@
return [
'coolify' => [
'version' => env('COOLIFY_VERSION') ?: '4.3.0',
'version' => env('COOLIFY_VERSION') ?: '4.3.1',
'helper_version' => '1.0.14',
'realtime_version' => '1.0.17',
'railpack_version' => '0.23.0',

View file

@ -19,12 +19,12 @@
->toContain('ARG COOLIFY_VERSION')
->toContain('ENV COOLIFY_VERSION=${COOLIFY_VERSION}')
->and($constants)
->toContain("'version' => env('COOLIFY_VERSION') ?: '4.3.0'");
->toContain("'version' => env('COOLIFY_VERSION') ?: '4.3.1'");
});
it('orders a maintenance development build before its stable release', function () {
expect(version_compare('4.3.0-dev.d64cbda3e', '4.3.0', '<'))->toBeTrue()
->and(version_compare('4.3.0', '4.3.0-dev.d64cbda3e', '>'))->toBeTrue();
expect(version_compare('4.3.1-dev.d64cbda3e', '4.3.1', '<'))->toBeTrue()
->and(version_compare('4.3.1', '4.3.1-dev.d64cbda3e', '>'))->toBeTrue();
});
it('requires a reviewed draft release before building a stable version', function () {