Skip to content

Commit

Permalink
Merge pull request #295 from jolicode/prepare-release-0-13
Browse files Browse the repository at this point in the history
Prepare v0.13.0 release
  • Loading branch information
lyrixx committed Feb 23, 2024
2 parents 46769be + 960f46f commit bc667be
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -93,8 +93,8 @@ jobs:
env:
CASTOR_BIN: ${{ github.workspace }}/${{ matrix.castor.bin }}

artefacts:
name: Ensure artefacts are OK
artifacts:
name: Ensure artifacts are OK
runs-on: ubuntu-latest

steps:
Expand Down
15 changes: 10 additions & 5 deletions CHANGELOG.md
Expand Up @@ -2,16 +2,21 @@

## Not released yet

* Allow to get null instead of throwing an exception when calling `task(true)` without a current task
## 0.13.0 (2024-02-23)

* Add a `compile` command that puts together a customizable PHP binary with a
repacked castor app into a static binary
* Distribute static binaries `castor.linux.amd64` and `castor.darwin.amd64`
automatically with the release
* Compile watcher and phar for arm64 on macOS, and distribute them with the
release
* Add `ProcessStartEvent` and `ProcessTerminateEvent` events
* Allow to listen to the symfony console events
* Add a `compile` command that puts together a customizable PHP binary with a
repacked castor app into one executable file
* Distribute `castor.linux.amd64` automatically with the release
* Set the process title according to the current application name and task name
* Compile watcher and phar for `ARM64` on macOS
* Deprecates `add_context()` function, use `AsContextGenerator` attribute
instead
* Allow to get null instead of throwing an exception when calling `task(true)`
without a current task
* Ignore some low level env vars in runnable command showed in logs
* Fix section output to work on Windows

Expand Down
2 changes: 1 addition & 1 deletion src/Console/Application.php
Expand Up @@ -47,7 +47,7 @@
class Application extends SymfonyApplication
{
public const NAME = 'castor';
public const VERSION = 'v0.12.1';
public const VERSION = 'v0.13.0';

// "Current" objects availables at some point of the lifecycle
private InputInterface $input;
Expand Down

0 comments on commit bc667be

Please sign in to comment.