From 57593d914d86b4f2271caefdf244891cb7ddd2f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Wed, 3 Apr 2024 16:52:52 +0200 Subject: [PATCH] Prepare v0.15.0 release --- CHANGELOG.md | 8 ++++++++ src/Console/Application.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5169e65d..9f228576 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Not released yet +## 0.15.0 (2024-04-03) + +### Features + * Add support for importing remote functions and tasks * Add a bash installer to ease installation * Distribute static binaries `castor.darwin-arm64` automatically with the @@ -16,10 +20,14 @@ * Find root directory by looking for a `.castor/castor.php` file * Allow stub file to be in `.castor/.castor.stub.php` +### Fixes + * Fix issue with PTY on windows, it's now always disabled * Fix issue when finding root dir on windows * Fix issue on SymfonyTask creation +### Deprecations + * Deprecate loading all PHP files from `[ROOT_DIR]/castor` * Deprecate `Context::withPath()` in favor of `Context::withWorkingDirectory()` * Deprecate `path` argument in `capture()`, `exit_code()`, `run()`, `with()` in diff --git a/src/Console/Application.php b/src/Console/Application.php index 60a8289a..c3f75f82 100644 --- a/src/Console/Application.php +++ b/src/Console/Application.php @@ -44,7 +44,7 @@ class Application extends SymfonyApplication { public const NAME = 'castor'; - public const VERSION = 'v0.14.0'; + public const VERSION = 'v0.15.0'; // "Current" objects available at some point of the lifecycle private InputInterface $input;