Skip to content

Commit

Permalink
Prepare for GDAL 3.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed May 6, 2022
1 parent 3ce520f commit c221336
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion GDALmake.opt.in
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ GDAL_INCLUDE = -iquote $(GDAL_ROOT)/port -iquote $(GDAL_ROOT)/generated_headers

# libtool targets and help variables
LIBGDAL := libgdal.la
LIBGDAL_CURRENT := 30
LIBGDAL_CURRENT := 31
LIBGDAL_REVISION := 0
LIBGDAL_AGE := 0

Expand Down
7 changes: 1 addition & 6 deletions HOWTO-RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,7 @@ Process :
- ./swig/python/gdal-utils/osgeo_utils/__init__.py (gdal-utils python package)
- ./swig/python/README.rst (libgdal)

3.2) Update ./swig/include/perl/gdal_perl.i $VERSION and $GDAL_VERSION
strings to current version. Update also $VERSION in
./swig/include/perl/ogr_perl.i to the same as the other $VERSION. Kick
Perl module maintainer to make a CPAN release.

3.3) For major releases update the VERSION macro in nmake.opt (for 1.6, 1.7etc)
3.2) For major releases update the VERSION macro in nmake.opt (for 1.6, 1.7etc)

4) Update LIBGDAL_CURRENT/REVISION/AGE macros in GDALmake.opt.in.
- For a release with no interface changes just bump REVISION.
Expand Down
4 changes: 2 additions & 2 deletions gcore/gdal_version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

#if !defined(DO_NOT_DEFINE_GDAL_DATE_NAME)
#ifndef GDAL_RELEASE_DATE
# define GDAL_RELEASE_DATE 20229999
# define GDAL_RELEASE_DATE 20220506
#endif
#ifndef GDAL_RELEASE_NAME
# define GDAL_RELEASE_NAME "3.5.0dev"
# define GDAL_RELEASE_NAME "3.5.0"
#endif
#endif
2 changes: 1 addition & 1 deletion nmake.opt
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ STDCALL=YES
# Version number embedded in DLL name.
# If GDAL version is X.Y.Z, VERSION = X * 100 + Y
!IFNDEF VERSION
VERSION = 303
VERSION = 305
!ENDIF

# Set HAVE_ATLBASE_H=NO if atlbase.h header is not available
Expand Down
2 changes: 1 addition & 1 deletion swig/python/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ reference documentation, but the `GDAL API Tutorial`_ includes Python examples.
Dependencies
------------

* libgdal (3.3.0 or greater) and header files (gdal-devel)
* libgdal (3.5.0 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 swig/python/gdal-utils/osgeo_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__package_name__ = 'gdal-utils'
gdal_utils_version = (3, 4, 99, 0)
gdal_utils_version = (3, 5, 0, 0)
__version__ = '.'.join(str(i) for i in gdal_utils_version)
__author__ = "Frank Warmerdam"
__author_email__ = "[email protected]"
Expand Down

0 comments on commit c221336

Please sign in to comment.