Skip to content

Commit

Permalink
Merge branch 'hotfix/0.17.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
polosson committed Jan 6, 2022
2 parents c49c64f + 397dd85 commit d944e78
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Tous les changements notables sur le projet sont documentés dans ce fichier.

Ce projet adhère au principe du [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.17.1 (2022-01-06)

- Corrige l'erreur de l'étape 5 du wizard d'installation (double boot du kernel).

## 0.17.0 (2022-01-05)

- Enlève la limite de caractères du champ "lieu" des événements (#300).
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.17.0
0.17.1
4 changes: 2 additions & 2 deletions server/src/App/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ final class Kernel

public static function boot()
{
if (!is_null(static::$instance) && Config::getEnv() !== 'test') {
throw new \LogicException("Le kernel a déjà été booté.");
if (!is_null(static::$instance)) {
return static::$instance;
}
return static::$instance = new static;
}
Expand Down

0 comments on commit d944e78

Please sign in to comment.