|
@@ -4,26 +4,10 @@
|
|
|
|
|
|
* Update `WhatsNew.txt`
|
|
|
|
|
|
-* Bump version number to 2.EVEN.0 in all these locations:
|
|
|
-
|
|
|
- * `configure.ac`, `CMakeLists.txt`: `SDL_*_VERSION`
|
|
|
- * `Xcode/SDL/Info-Framework.plist`: `CFBundleShortVersionString`,
|
|
|
- `CFBundleVersion`
|
|
|
- * `Makefile.os2`: `VERSION`
|
|
|
- * `Makefile.w32`: `*_VERSION`
|
|
|
- * `include/SDL_version.h`: `SDL_*_VERSION`, `SDL_PATCHLEVEL`
|
|
|
- * `src/main/windows/version.rc`: `FILEVERSION`, `PRODUCTVERSION`,
|
|
|
- `FileVersion`, `ProductVersion`
|
|
|
-
|
|
|
-* Bump ABI version information
|
|
|
-
|
|
|
- * `CMakeLists.txt`, `Xcode/SDL/SDL.xcodeproj/project.pbxproj`:
|
|
|
- `DYLIB_CURRENT_VERSION`, `DYLIB_COMPATIBILITY_VERSION`
|
|
|
- * set first number in `DYLIB_CURRENT_VERSION` to
|
|
|
- (100 * *minor*) + 1
|
|
|
- * set second number in `DYLIB_CURRENT_VERSION` to 0
|
|
|
- * if backwards compatibility has been broken,
|
|
|
- increase `DYLIB_COMPATIBILITY_VERSION` (?)
|
|
|
+* Bump version number to 2.EVEN.0:
|
|
|
+
|
|
|
+ * `./build-scripts/update-version.sh 2 EVEN 0`
|
|
|
+ * (spaces between each component of the version, and `EVEN` will be a real number in real life.
|
|
|
|
|
|
* Run test/versioning.sh to verify that everything is consistent
|
|
|
|
|
@@ -39,13 +23,8 @@
|
|
|
|
|
|
* Bump version number from 2.Y.Z to 2.Y.(Z+1) (Y is even)
|
|
|
|
|
|
- * Same places as listed above
|
|
|
-
|
|
|
-* Bump ABI version information
|
|
|
-
|
|
|
- * `CMakeLists.txt`, `Xcode/SDL/SDL.xcodeproj/project.pbxproj`:
|
|
|
- `DYLIB_CURRENT_VERSION`, `DYLIB_COMPATIBILITY_VERSION`
|
|
|
- * set second number in `DYLIB_CURRENT_VERSION` to *patchlevel*
|
|
|
+ * `./build-scripts/update-version.sh 2 Y Z+1`
|
|
|
+ * (spaces between each component of the version, and `Y` and `Z+1` will be real numbers in real life.
|
|
|
|
|
|
* Run test/versioning.sh to verify that everything is consistent
|
|
|
|
|
@@ -59,12 +38,8 @@
|
|
|
|
|
|
* Bump version number to 2.ODD.0 for next development branch
|
|
|
|
|
|
- * Same places as listed above
|
|
|
-
|
|
|
-* Bump ABI version information
|
|
|
-
|
|
|
- * Same places as listed above
|
|
|
- * Assume that the next feature release will contain new API/ABI
|
|
|
+ * `./build-scripts/update-version.sh 2 ODD 0`
|
|
|
+ * (spaces between each component of the version, and `ODD` will be a real number in real life.
|
|
|
|
|
|
* Run test/versioning.sh to verify that everything is consistent
|
|
|
|
|
@@ -72,17 +47,10 @@
|
|
|
|
|
|
* Bump version number from 2.Y.Z to 2.Y.(Z+1) (Y is odd)
|
|
|
|
|
|
- * Same places as listed above
|
|
|
-
|
|
|
-* Bump ABI version information
|
|
|
+ * `./build-scripts/update-version.sh 2 Y Z+1`
|
|
|
+ * (spaces between each component of the version, and `Y` and `Z+1` will be real numbers in real life.
|
|
|
|
|
|
- * `CMakeLists.txt`, `Xcode/SDL/SDL.xcodeproj/project.pbxproj`:
|
|
|
- `DYLIB_CURRENT_VERSION`, `DYLIB_COMPATIBILITY_VERSION`
|
|
|
- * set first number in `DYLIB_CURRENT_VERSION` to
|
|
|
- (100 * *minor*) + *patchlevel* + 1
|
|
|
- * set second number in `DYLIB_CURRENT_VERSION` to 0
|
|
|
- * if backwards compatibility has been broken,
|
|
|
- increase `DYLIB_COMPATIBILITY_VERSION` (?)
|
|
|
+* Regenerate `configure`
|
|
|
|
|
|
* Run test/versioning.sh to verify that everything is consistent
|
|
|
|