prepare release 1.9 (#1635)
This commit is contained in:
@@ -7,8 +7,8 @@ As announced in the [README](README.md) I only support the latest available rele
|
|||||||
| Version | Supported |
|
| Version | Supported |
|
||||||
| ------- | ------------------ |
|
| ------- | ------------------ |
|
||||||
| master | :white_check_mark: |
|
| master | :white_check_mark: |
|
||||||
| 1.7 | :white_check_mark: |
|
| 1.9 | :white_check_mark: |
|
||||||
| < 1.7 | :x: |
|
| < 1.9 | :x: |
|
||||||
|
|
||||||
## Reporting a Vulnerability
|
## Reporting a Vulnerability
|
||||||
|
|
||||||
|
|||||||
@@ -118,11 +118,7 @@ class CreateReleaseCommand extends Command
|
|||||||
'.codecov.yml',
|
'.codecov.yml',
|
||||||
'.editorconfig',
|
'.editorconfig',
|
||||||
'.php_cs.dist',
|
'.php_cs.dist',
|
||||||
'.travis.yml',
|
|
||||||
'*.lock',
|
|
||||||
'package.json',
|
|
||||||
'phpstan.neon',
|
'phpstan.neon',
|
||||||
'Dockerfile',
|
|
||||||
'phpunit.xml.dist',
|
'phpunit.xml.dist',
|
||||||
'webpack.config.js',
|
'webpack.config.js',
|
||||||
// this seems to be required, see https://github.com/kevinpapst/kimai2/issues/1586
|
// this seems to be required, see https://github.com/kevinpapst/kimai2/issues/1586
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ class Constants
|
|||||||
/**
|
/**
|
||||||
* The current release status, either "stable" or "dev"
|
* The current release status, either "stable" or "dev"
|
||||||
*/
|
*/
|
||||||
public const STATUS = 'dev';
|
public const STATUS = 'stable';
|
||||||
/**
|
/**
|
||||||
* The software name
|
* The software name
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ class SqliteSessionInitSubscriber implements EventSubscriber
|
|||||||
*/
|
*/
|
||||||
public function postConnect(ConnectionEventArgs $args)
|
public function postConnect(ConnectionEventArgs $args)
|
||||||
{
|
{
|
||||||
if ('sqlite' !== strtolower($args->getDatabasePlatform()->getName())) {
|
if ('sqlite' !== strtolower($args->getConnection()->getDatabasePlatform()->getName())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user