Skip to content

Commit aa91a0c

Browse files
committed
Prepare for GDAL 2.4.0
1 parent 25d6f6f commit aa91a0c

File tree

8 files changed

+652
-10
lines changed

8 files changed

+652
-10
lines changed

gdal/GDALmake.opt.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ GDAL_INCLUDE = -I$(GDAL_ROOT)/port -I$(GDAL_ROOT)/gcore \
122122

123123
# libtool targets and help variables
124124
LIBGDAL := libgdal.la
125-
LIBGDAL_CURRENT := 24
125+
LIBGDAL_CURRENT := 25
126126
LIBGDAL_REVISION := 0
127-
LIBGDAL_AGE := 4
127+
LIBGDAL_AGE := 5
128128

129129
# native build targets and variables
130130
GDAL_VER = @GDAL_VER@

gdal/NEWS

Lines changed: 642 additions & 0 deletions
Large diffs are not rendered by default.

gdal/gcore/gdal_version.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424

2525
#if !defined(DO_NOT_DEFINE_GDAL_RELEASE_DATE_AND_GDAL_RELEASE_NAME)
2626
#ifndef GDAL_RELEASE_DATE
27-
# define GDAL_RELEASE_DATE 20189999
27+
# define GDAL_RELEASE_DATE 20181214
2828
#endif
2929
#ifndef GDAL_RELEASE_NAME
30-
# define GDAL_RELEASE_NAME "2.4.0dev"
30+
# define GDAL_RELEASE_NAME "2.4.0"
3131
#endif
3232
#endif

gdal/nmake.opt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ STDCALL=YES
204204
# Version number embedded in DLL name.
205205
# If GDAL version is X.Y.Z, VERSION = X * 100 + Y
206206
!IFNDEF VERSION
207-
VERSION = 203
207+
VERSION = 204
208208
!ENDIF
209209

210210
# Comment the following out if you want PAM supported disabled

gdal/swig/include/perl/gdal_perl.i

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ use Geo::GDAL::Const;
143143
# Note that the 1/100000 digits may be used to create more than one
144144
# CPAN release from one GDAL release.
145145

146-
our $VERSION = '2.0300';
147-
our $GDAL_VERSION = '2.3.0';
146+
our $VERSION = '2.0400';
147+
our $GDAL_VERSION = '2.4.0';
148148

149149
=pod
150150

gdal/swig/include/perl/ogr_perl.i

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ ALTERED_DESTROY(OGRGeometryShadow, OGRc, delete_Geometry)
126126
%perlcode %{
127127

128128
package Geo::OGR;
129-
our $VERSION = '2.0300'; # this needs to be the same as that in gdal_perl.i
129+
our $VERSION = '2.0400'; # this needs to be the same as that in gdal_perl.i
130130

131131
Geo::GDAL->import(qw(:INTERNAL));
132132

gdal/swig/python/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ reference documentation, but the `GDAL API Tutorial`_ includes Python examples.
1616
Dependencies
1717
------------
1818

19-
* libgdal (2.3.0 or greater) and header files (gdal-devel)
19+
* libgdal (2.4.0 or greater) and header files (gdal-devel)
2020
* numpy (1.0.0 or greater) and header files (numpy-devel) (not explicitly
2121
required, but many examples and utilities will not work without it)
2222

gdal/swig/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Howard Butler hobu.inc@gmail.com
88

99

10-
gdal_version = '2.3.0'
10+
gdal_version = '2.4.0'
1111

1212
import sys
1313
import os

0 commit comments

Comments
 (0)