Skip to content

Commit ee535a1

Browse files
committed
Prepare for GDAL 3.0.4
1 parent 7e34e3f commit ee535a1

8 files changed

Lines changed: 48 additions & 10 deletions

File tree

gdal/GDALmake.opt.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ GDAL_INCLUDE = -I$(GDAL_ROOT)/port -I$(GDAL_ROOT)/gcore \
123123
# libtool targets and help variables
124124
LIBGDAL := libgdal.la
125125
LIBGDAL_CURRENT := 26
126-
LIBGDAL_REVISION := 3
126+
LIBGDAL_REVISION := 4
127127
LIBGDAL_AGE := 0
128128

129129
# native build targets and variables

gdal/NEWS

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
= GDAL/OGR 3.0.4 Release Notes =
2+
3+
The 3.0.4 release is a bug fix release.
4+
5+
== Build ==
6+
7+
* Fix build against Poppler 0.85dev
8+
* Fix build against latest librasterlite2
9+
10+
== Other ==
11+
12+
* Remove execution right from ogr/*.png (#2184)
13+
14+
== GDAL utilities ==
15+
16+
* gdalinfo: fix axis order issue in lon,lat corner coordinates, in particular when reading from a .aux.xml with a ProjectedCRS (#2195)
17+
18+
== GDAL drivers ==
19+
20+
GTiff driver:
21+
* Do not write by default EPSG:3857/WebMercator as a ESRI PE string. Fixes 3.0 regression
22+
23+
HDF5 driver:
24+
* fix reading single dimension dataset (#2180)
25+
26+
PDF driver:
27+
* fix null pointer dereference or infinite recursion/stack overflow on corrupted file. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=20033
28+
* fix excessive memory consumption on corrupted files
29+
30+
== OGR drivers ==
31+
32+
MTAB driver:
33+
* Fix dataset access mode (#2170)
34+
35+
NGW driver:
36+
* Fix dataset access mode
37+
* Add support for layers geometry types with Z
38+
139
= GDAL/OGR 3.0.3 Release Notes =
240

341
The 3.0.3 release is a bug fix release.

gdal/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.3
1+
3.0.4

gdal/gcore/gdal_version.h.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifndef GDAL_VERSION_MAJOR
88
# define GDAL_VERSION_MAJOR 3
99
# define GDAL_VERSION_MINOR 0
10-
# define GDAL_VERSION_REV 3
10+
# define GDAL_VERSION_REV 4
1111
# define GDAL_VERSION_BUILD 0
1212
#endif
1313

@@ -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 20200108
27+
# define GDAL_RELEASE_DATE 20200128
2828
#endif
2929
#ifndef GDAL_RELEASE_NAME
30-
# define GDAL_RELEASE_NAME "3.0.3"
30+
# define GDAL_RELEASE_NAME "3.0.4"
3131
#endif
3232
#endif

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 = '3.0003';
147-
our $GDAL_VERSION = '3.0.3';
146+
our $VERSION = '3.0004';
147+
our $GDAL_VERSION = '3.0.4';
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 = '3.0003'; # this needs to be the same as that in gdal_perl.i
129+
our $VERSION = '3.0004'; # this needs to be the same as that in gdal_perl.i
130130

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

gdal/swig/python/README.rst

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 (3.0.3 or greater) and header files (gdal-devel)
19+
* libgdal (3.0.4 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 = '3.0.3'
10+
gdal_version = '3.0.4'
1111

1212
import sys
1313
import os

0 commit comments

Comments
 (0)