This is 1.4.0rc2 (#3183)

This commit is contained in:
Sean Gillies 2024-09-23 11:04:50 -06:00 committed by GitHub
parent fd4163d4b5
commit ffe77ecc7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,13 @@
Changes
=======
1.4.0rc2 (2024-09-10)
---------------------
Version 1.4.0 will require GDAL >= 3.5. Conditional checks for older GDAL
versions at compile and run time have been removed across the entirety of the
project (#3166).
1.4.0rc1 (2024-09-09)
---------------------

View File

@ -81,7 +81,7 @@ except ImportError:
have_vsi_plugin = False
__all__ = ['band', 'open', 'pad', 'Band', 'Env', 'CRS']
__version__ = "1.4.0.dev1"
__version__ = "1.4.0rc2"
__gdal_version__ = gdal_version()
__proj_version__ = ".".join([str(version) for version in get_proj_version()])
__geos_version__ = ".".join([str(version) for version in get_geos_version()])