From b17feef3f4b18f599750e06a775cc6d1a9a3d6f9 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Mon, 9 Sep 2024 11:01:08 +0100 Subject: [PATCH] release: v3.0.0 --- CONTRIBUTING.md | 2 +- README.md | 3 +++ RELEASE.md | 6 +++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4f24ec41..254fbbc8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -69,7 +69,7 @@ If you want to check things work against a specific version of PHP, you may incl the `PHP` build argument when building the image: ```bash -make build ARGS="--build-arg PHP=8.2" +make build ARGS="--build-arg PHP=8.3" ``` The default PHP version will always be the lowest version of PHP supported by Pest. diff --git a/README.md b/README.md index 35dfa73e..62b8061c 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,9 @@

------ + +> Pest v3 Now Available: **[Read the announcement »](https://pestphp.com/docs/pest3-now-available)**. + **Pest** is an elegant PHP testing Framework with a focus on simplicity, meticulously designed to bring back the joy of testing in PHP. - Explore our docs at **[pestphp.com »](https://pestphp.com)** diff --git a/RELEASE.md b/RELEASE.md index 50e7b2d3..f0ad6113 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -2,10 +2,10 @@ 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.** +> **For Pest v2 you should use the `2.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) +- Clear your local repository with: `git add . && git reset --hard && git checkout 3.x` +- On the GitHub repository, check the contents of [github.com/pestphp/pest/compare/{latest_version}...3.x](https://github.com/pestphp/pest/compare/{latest_version}...3.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"`