forked from libsdl-org/SDL
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs/release_checklist.md: Document how/where to bump version numbers
Signed-off-by: Simon McVittie <[email protected]>
- Loading branch information
Showing
4 changed files
with
46 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Release checklist | ||
|
||
* Update `WhatsNew.txt` | ||
|
||
* Bump version number to 2.0.EVEN for stable release | ||
|
||
* `configure.ac`, `CMakeLists.txt`: `SDL_*_VERSION` | ||
* `Xcode/SDL/Info-Framework.plist`: `CFBundleShortVersionString`, | ||
`CFBundleVersion` | ||
* `Makefile.os2`: `VERSION` | ||
* `build-scripts/winrtbuild.ps1`: `$SDLVersion` | ||
* `include/SDL_version.h`: `SDL_*_VERSION`, `SDL_PATCHLEVEL` | ||
* `src/main/windows/version.rc`: `FILEVERSION`, `PRODUCTVERSION`, | ||
`FileVersion`, `ProductVersion` | ||
|
||
* Bump ABI version information | ||
|
||
* `configure.ac`: `CMakeLists.txt`: `SDL_INTERFACE_AGE`, `SDL_BINARY_AGE` | ||
* `SDL_INTERFACE_AGE += 1` | ||
* `SDL_BINARY_AGE += 1` | ||
* if any functions have been added, set `SDL_INTERFACE_AGE` to 0 | ||
* if backwards compatibility has been broken, | ||
set both `SDL_BINARY_AGE` and `SDL_INTERFACE_AGE` to 0 | ||
* `Xcode/SDL/SDL.xcodeproj/project.pbxproj`: `DYLIB_CURRENT_VERSION`, | ||
`DYLIB_COMPATIBILITY_VERSION` | ||
* increment second number in `DYLIB_CURRENT_VERSION` | ||
* if any functions have been added, increment first number in | ||
`DYLIB_CURRENT_VERSION` and set second number to 0 | ||
* if backwards compatibility has been broken, | ||
increase `DYLIB_COMPATIBILITY_VERSION` (?) | ||
|
||
* Regenerate `configure` | ||
|
||
* Do the release | ||
|
||
* Bump version number to 2.0.ODD for next development version | ||
|
||
* Same places as listed above | ||
|
||
* Bump ABI version information | ||
|
||
* Same places as listed above | ||
* initially assume that there is no new ABI |