🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

  1. # Release checklist
  2. When changing the version, run `build-scripts/update-version.sh X Y Z`,
  3. where `X Y Z` are the major version, minor version, and patch level. So
  4. `2 28 1` means "change the version to 2.28.1". This script does much of the
  5. mechanical work.
  6. ## New feature release
  7. * Update `WhatsNew.txt`
  8. * Bump version number to 2.EVEN.0:
  9. * `./build-scripts/update-version.sh 2 EVEN 0`
  10. * Do the release
  11. * Update the website file include/header.inc.php to reflect the new version
  12. ## New bugfix release
  13. * Check that no new API/ABI was added
  14. * If it was, do a new feature release (see above) instead
  15. * Bump version number from 2.Y.Z to 2.Y.(Z+1) (Y is even)
  16. * `./build-scripts/update-version.sh 2 Y Z+1`
  17. * Do the release
  18. * Update the website file include/header.inc.php to reflect the new version
  19. ## After a feature release
  20. * Create a branch like `release-2.24.x`
  21. * Bump version number to 2.ODD.0 for next development branch
  22. * `./build-scripts/update-version.sh 2 ODD 0`
  23. ## New development prerelease
  24. * Bump version number from 2.Y.Z to 2.Y.(Z+1) (Y is odd)
  25. * `./build-scripts/update-version.sh 2 Y Z+1`
  26. * Do the release