Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Prepare for v3.2.3RC1
  • Loading branch information
rouault committed Apr 27, 2021
1 parent 4fe3856 commit e6e6309
Show file tree
Hide file tree
Showing 7 changed files with 86 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gdal/GDALmake.opt.in
Expand Up @@ -127,7 +127,7 @@ GDAL_INCLUDE = -I$(GDAL_ROOT)/port -I$(GDAL_ROOT)/gcore \
# libtool targets and help variables
LIBGDAL := libgdal.la
LIBGDAL_CURRENT := 28
LIBGDAL_REVISION := 2
LIBGDAL_REVISION := 3
LIBGDAL_AGE := 0

# native build targets and variables
Expand Down
77 changes: 77 additions & 0 deletions gdal/NEWS
@@ -1,3 +1,80 @@
= GDAL/OGR 3.2.3 Release Notes =

The 3.2.3 release is a bug fix release. Note that the GDAL 3.2 series is the last one to support Python versions < 3.6

== GDAL algorithms ==

* GDALSerializeWarpOptions(): fix potential nullptr dereference (CID 1448606)

== GDAL core ==

* LoadPythonAPI(): make it work on Ubuntu 20.04 when python-is-python3 package that symlinks python to python3 is installed

== GDAL drivers ==

BAG driver:
* fix inverted width/height info in XML (#3605)

ECW driver:
* fix build with original ECW SDK 5.4 (#2776)

GTiff driver:
* fix speed of guessing JPEG quality
* GTIFF/COG: fix overviews with NaN nodata value

JP2KAK driver:
* JP2KAKDataset::Open(): avoid illegal memory access when reading J2K_SUBFILE: (CID 1448644)

JPIPKAK driver:
* JPIPKAK: avoid use after free in error code path (CID 1086757)

netCDF driver:
* increase tolerance to detect regularly spaced lon/lat arrays when data type is float (#3663)
* multidim API: fix retrieval of indexing variable when the indexing variable has more than 1D

NWT_GRD driver:
* fix portability issue

RMF driver:
* fix portability issues on non-Intel platforms

LercLib: fix portability issue on non-Intel platforms

== OGR core ==

* OGRPoint: make it empty when x or y is NaN (#3542)
* Prepared geometries: avoid GEOS crash on a Point Empty (#3542)

== OGR drivers ==

AmigoCloud driver:
* fix GetFeature (#3569)
* fix memleak (CID 1448692)

CAD (libopencad) driver:
* fixes for big endian hosts

FlatGeoBuf driver:
* fix crash in GetFileList() on a dataset opened in update mode
* fix crash when writing features larger than 32 KB (ossfuzz 29462)

GeoPackage driver:
* accept GPKG 1.3.x user_version without warning (#2479)

SXF driver:
* fix reading on big-endian architectures

XLSX driver:
* fix read cells with inline formatting (#3729)

== SWIG bindings ==
* fix expansion of ODsCRandomLayerWrite
* add missing GRA_Sum constant (#3724)

== Python bindings ==

* setup.py: fix for 'python setup.py sdist' with python3

= GDAL/OGR 3.2.2 Release Notes =

The 3.2.2 release is a bug fix release. Note that the GDAL 3.2 series is the last one to support Python versions < 3.6
Expand Down
6 changes: 3 additions & 3 deletions gdal/gcore/gdal_version.h.in
Expand Up @@ -7,7 +7,7 @@
#ifndef GDAL_VERSION_MAJOR
# define GDAL_VERSION_MAJOR 3
# define GDAL_VERSION_MINOR 2
# define GDAL_VERSION_REV 2
# define GDAL_VERSION_REV 3
# define GDAL_VERSION_BUILD 0
#endif

Expand All @@ -24,9 +24,9 @@

#if !defined(DO_NOT_DEFINE_GDAL_RELEASE_DATE_AND_GDAL_RELEASE_NAME)
#ifndef GDAL_RELEASE_DATE
# define GDAL_RELEASE_DATE 20210305
# define GDAL_RELEASE_DATE 20210427
#endif
#ifndef GDAL_RELEASE_NAME
# define GDAL_RELEASE_NAME "3.2.2"
# define GDAL_RELEASE_NAME "3.2.3"
#endif
#endif
4 changes: 2 additions & 2 deletions gdal/swig/include/perl/gdal_perl.i
Expand Up @@ -143,8 +143,8 @@ use Geo::GDAL::Const;
# Note that the 1/100000 digits may be used to create more than one
# CPAN release from one GDAL release.

our $VERSION = '3.0202';
our $GDAL_VERSION = '3.2.2';
our $VERSION = '3.0203';
our $GDAL_VERSION = '3.2.3';

=pod

Expand Down
2 changes: 1 addition & 1 deletion gdal/swig/include/perl/ogr_perl.i
Expand Up @@ -126,7 +126,7 @@ ALTERED_DESTROY(OGRGeometryShadow, OGRc, delete_Geometry)
%perlcode %{

package Geo::OGR;
our $VERSION = '3.0202'; # this needs to be the same as that in gdal_perl.i
our $VERSION = '3.0203'; # this needs to be the same as that in gdal_perl.i

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

Expand Down
2 changes: 1 addition & 1 deletion gdal/swig/python/README.rst
Expand Up @@ -16,7 +16,7 @@ reference documentation, but the `GDAL API Tutorial`_ includes Python examples.
Dependencies
------------

* libgdal (3.2.2 or greater) and header files (gdal-devel)
* libgdal (3.2.3 or greater) and header files (gdal-devel)
* numpy (1.0.0 or greater) and header files (numpy-devel) (not explicitly
required, but many examples and utilities will not work without it)

Expand Down
2 changes: 1 addition & 1 deletion gdal/swig/python/setup.py
Expand Up @@ -7,7 +7,7 @@
# Howard Butler hobu.inc@gmail.com


gdal_version = '3.2.2'
gdal_version = '3.2.3'

import sys
import os
Expand Down

0 comments on commit e6e6309

Please sign in to comment.