Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 597 Bytes

File metadata and controls

23 lines (20 loc) · 597 Bytes

RELEASING.md

Quick checklist for releasing a new version:

  1. Commit your changes and push to the main branch:
    git commit -am "Release X.Y.Z"
    git push
  2. Tag the release and push the tag:
    git tag vX.Y.Z
    git push origin vX.Y.Z
  3. Create Release on GitHub:
    • Go to Releases > Draft a new release > select vX.Y.Z > Publish release
  4. Update Packagist:
    • Open your package page on Packagist > click Update
  5. Verify installation:
    composer require solvercaptcha/solvecaptcha-php:X.Y.Z