Skip to content

Commit b51894d

Browse files
authored
Merge pull request OSGeo#11865 from rouault/GDAL_RELEASE_NICKNAME
Add a GDAL_RELEASE_NICKNAME define
2 parents 1b2ec24 + a37a65e commit b51894d

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

HOWTO-RELEASE

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ Process :
3737
(*NOT* gdal_version.h which is a generated file)
3838
Note: the format of GDAL_RELEASE_DATE should be YYYYMMDD.
3939

40+
Update the release nickname of GDAL_RELEASE_NICKNAME to whatever makes sense
41+
to the release manager.
42+
4043
3) Update two instances of year in CITATION file to the current year.
4144

4245
4) Update "version" and "date-released" in CITATION.cff (Note: the DOI does

gcore/gdal_misc.cpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -2836,6 +2836,8 @@ int CPL_STDCALL GDALWriteWorldFile(const char *pszBaseFilename,
28362836
* <li> "RELEASE_DATE": Returns GDAL_RELEASE_DATE formatted as a
28372837
* string. i.e. "20230312".</li>
28382838
* <li> "RELEASE_NAME": Returns the GDAL_RELEASE_NAME. ie. "3.6.3"</li>
2839+
* <li> "RELEASE_NICKNAME": (>= 3.11) Returns the GDAL_RELEASE_NICKNAME.
2840+
* i.e. "Trans rights are human rights"</li>
28392841
* <li> "--version": Returns one line version message suitable for
28402842
* use in response to --version requests. i.e. "GDAL 3.6.3, released
28412843
* 2023/03/12"</li>
@@ -2999,12 +3001,14 @@ const char *CPL_STDCALL GDALVersionInfo(const char *pszRequest)
29993001
osVersionInfo.Printf("%d", GDAL_RELEASE_DATE);
30003002
else if (EQUAL(pszRequest, "RELEASE_NAME"))
30013003
osVersionInfo.Printf(GDAL_RELEASE_NAME);
3004+
else if (EQUAL(pszRequest, "RELEASE_NICKNAME"))
3005+
osVersionInfo.Printf(GDAL_RELEASE_NICKNAME);
30023006
else // --version
30033007
{
3004-
osVersionInfo.Printf("GDAL %s, released %d/%02d/%02d",
3005-
GDAL_RELEASE_NAME, GDAL_RELEASE_DATE / 10000,
3006-
(GDAL_RELEASE_DATE % 10000) / 100,
3007-
GDAL_RELEASE_DATE % 100);
3008+
osVersionInfo.Printf(
3009+
"GDAL %s \"%s\", released %d/%02d/%02d", GDAL_RELEASE_NAME,
3010+
GDAL_RELEASE_NICKNAME, GDAL_RELEASE_DATE / 10000,
3011+
(GDAL_RELEASE_DATE % 10000) / 100, GDAL_RELEASE_DATE % 100);
30083012
#if defined(__GNUC__) && !defined(__OPTIMIZE__)
30093013
// Cf https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html
30103014
// also true for CLang

gcore/gdal_version.h.in

+3
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,7 @@
2828
#ifndef GDAL_RELEASE_NAME
2929
# define GDAL_RELEASE_NAME "3.11.0dev"
3030
#endif
31+
32+
#define GDAL_RELEASE_NICKNAME "Trans rights are human rights"
33+
3134
#endif

0 commit comments

Comments
 (0)