Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v0.14.0 release #314

Merged
merged 1 commit into from Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions CHANGELOG.md
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion src/Console/Application.php
Expand Up @@ -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;
Expand Down