Skip to content

Commit

Permalink
Merge pull request #314 from jolicode/release
Browse files Browse the repository at this point in the history
Prepare v0.14.0 release
  • Loading branch information
pyrech committed Mar 8, 2024
2 parents 8309033 + 3cfc3e5 commit a3f8467
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
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

0 comments on commit a3f8467

Please sign in to comment.