Skip to content
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
12 changes: 8 additions & 4 deletions .github/workflows/publish-phar.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Publish the released PHAR

on:
release:
types: [created]
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
tag:
Expand Down Expand Up @@ -54,7 +55,10 @@ jobs:
name: pint.phar
path: builds/pint.phar

- name: Upload the PHAR to release
run: gh release upload v${{ steps.tag.outputs.tag }} builds/pint.phar
- name: Publish the release with the PHAR attached
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Immutable releases reject assets added after publication, so the PHAR
# is attached as the release is created, in a single atomic step.
gh release create "v${{ steps.tag.outputs.tag }}" builds/pint.phar --generate-notes
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Release Notes

## [Unreleased](https://github.com/laravel/pint/compare/v1.29.1...main)
## [Unreleased](https://github.com/laravel/pint/compare/v1.29.2...main)

## [v1.29.2](https://github.com/laravel/pint/compare/v1.29.1...v1.29.2) - 2026-06-16

- fix: no longer accepts loading a configuration over insecure `http`
- fix: sends errors to stderr
- chore: various actions regarding github security
- chore: uses `laravel/agent-detector`

## [v1.29.1](https://github.com/laravel/pint/compare/v1.29.0...v1.29.1) - 2026-04-20

Expand Down
10 changes: 9 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,12 @@

5. Commit all changes
6. Push all commits to GitHub
7. [Create a new GitHub release](https://github.com/laravel/pint/releases/new) with the release notes
7. Tag the release and push the tag:

```zsh
git tag v1.x.y
git push origin v1.x.y
```

8. Edit the release title or notes on GitHub if needed (these remain editable
even though immutable releases lock the assets and tag)
Binary file modified builds/pint
Binary file not shown.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"ext-xml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95.7",
"friendsofphp/php-cs-fixer": "^3.95.8",
"illuminate/view": "^12.62.0",
"larastan/larastan": "^3.10.0",
"laravel-zero/framework": "^12.1.0",
Expand Down
38 changes: 19 additions & 19 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
|
*/

'version' => '1.29.1',
'version' => '1.29.3',

/*
|--------------------------------------------------------------------------
Expand Down