mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
20 lines
1.0 KiB
Markdown
20 lines
1.0 KiB
Markdown
# Release process
|
|
|
|
When releasing a new version of Pest there are some checks and updates that need to be done:
|
|
|
|
> **For Pest v1 you should use the `1.x` branch instead.**
|
|
|
|
- Clear your local repository with: `git add . && git reset --hard && git checkout 2.x`
|
|
- On the GitHub repository, check the contents of [github.com/pestphp/pest/compare/{latest_version}...2.x](https://github.com/pestphp/pest/compare/{latest_version}...2.x)
|
|
- Update the version number in [src/Pest.php](src/Pest.php)
|
|
- Run the tests locally using: `composer test`
|
|
- Commit the Pest file with the message: `git commit -m "release: vX.X.X"`
|
|
- Push the changes to GitHub
|
|
- Check that the CI is passing as expected: [github.com/pestphp/pest/actions](https://github.com/pestphp/pest/actions)
|
|
- Tag and push the tag with `git tag vX.X.X && git push --tags`
|
|
- Publish release here: [github.com/pestphp/pest/releases/new](https://github.com/pestphp/pest/releases/new).
|
|
|
|
### Plugins
|
|
|
|
Plugins should be versioned using the same major (or minor for `0.x` releases) version as Pest core.
|