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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix buildchain #516

Merged
merged 1 commit into from
Sep 3, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
release:
name: Upload artifacts to the release
if: github.event_name == 'release'
needs: [phars, static-linux-amd64, static-darwin-amd64, static-darwin-arm64]
needs: [phars, static-linux-amd64, static-darwin-amd64]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

## Not released yet

## 0.18.2 (2024-09-03)

* Do not build static-darwin-amd64 binary anymore (may be temporary)
*
## 0.18.1 (2024-09-03)

* Fix BC layer for `fingerprint()` function
* Fix repack command work without .castor folder
* Do not build static-darwin-amd64 binary anymore (may be temporary)

## 0.18.0 (2024-08-27)

Expand Down
2 changes: 1 addition & 1 deletion src/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class Application extends SymfonyApplication
{
public const NAME = 'castor';
public const VERSION = 'v0.18.1';
public const VERSION = 'v0.18.2';

private Command $command;

Expand Down