From 129695626e96e7fdbd0519b84a55beedef18e78f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Thu, 11 Jan 2024 15:41:04 +0100 Subject: [PATCH] Prepare v0.11.0 --- CHANGELOG.md | 2 ++ src/Console/Application.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ed4cb75..e7c1994b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Not released yet +## 0.11.0 (2024-01-11) + * Add `AsListener` attribute to register an event listener * Add `wait_for()`, `wait_for_port()`, `wait_for_url()`, `wait_for_http_status()` functions * Allow to override `AsTask` and `AsContext` attributes diff --git a/src/Console/Application.php b/src/Console/Application.php index 4c9ec720..c4385af8 100644 --- a/src/Console/Application.php +++ b/src/Console/Application.php @@ -43,7 +43,7 @@ class Application extends SymfonyApplication { public const NAME = 'castor'; - public const VERSION = 'v0.10.0'; + public const VERSION = 'v0.11.0'; // "Current" objects availables at some point of the lifecycle private InputInterface $input;