From 3cfc3e57abfa1dcc15a24f817356ef4a390018cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Fri, 8 Mar 2024 10:37:52 +0100 Subject: [PATCH] Prepare v0.14.0 release --- CHANGELOG.md | 8 ++++++-- src/Console/Application.php | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8ae3666..d42fd116 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,16 @@ ## Not released yet +## 0.14.0 (2024-03-08) + * Add a `yaml_dump()` function to dump any PHP value to a YAML string * Add a `yaml_parse()` function to parse a YAML string to a PHP value * Remove the default timeout of 60 seconds from the Context -* Add `bool` return type to `fingerprint()` function to indicate if the callable was run -* Add a `recursive` parameter to the `withData()` method of `Context` to allow recursive merging for nested arrays +* Add a `recursive` parameter to the `withData()` method of `Context` to allow + recursive merging for nested arrays * Add an `open()` function to open a file or URL in the default application +* Add `bool` return type to `fingerprint()` function to indicate if the callable + was run ## 0.13.1 (2024-02-27) diff --git a/src/Console/Application.php b/src/Console/Application.php index 483f3b4b..4aad94d5 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.13.1'; + public const VERSION = 'v0.14.0'; // "Current" objects availables at some point of the lifecycle private InputInterface $input;