Skip to content

Commit

Permalink
This is 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sgillies committed Aug 17, 2022
1 parent 2c40386 commit 67d5854
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions CHANGES.txt
@@ -1,14 +1,26 @@
Changes
=======

1.3.1 (TBD)
-----------
1.3.1 (2022-08-17)
------------------

Packaging:

Wheels for 1.3.1 are built using the version of rasterio-wheels dated
2022-08-17 and include PROJ 9.0.1 and GDAL 3.5.1.

Bug fixes:

- get_data_window has been improved and extended to 1D (#2510).
- Broadcasting of coordinates in transform.xy has been restored (#2538).
- A bug in nodata filling (#2474) has been fixed by patching GDAL (wheels
only).
- Support for PROJ_DATA has been added (#2530).
- Non-informative errors arising from opening a dataset in write mode are
silenced (#2525).
- N-D arrays are once again accepted by sampling.sample_gen (#2515).
- N-D arrays are once again accepted by sampling.sample_gen (#2547).
- MemoryDataset's memory layout has been fixed to properly support
non-contiguous data (#2512).

1.3.0.post1 (2022-08-09)
------------------------
Expand Down
2 changes: 1 addition & 1 deletion rasterio/__init__.py
Expand Up @@ -55,7 +55,7 @@ class FilePath:
have_vsi_plugin = False

__all__ = ['band', 'open', 'pad', 'Env', 'CRS']
__version__ = "1.3.1dev"
__version__ = "1.3.1"
__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()])
Expand Down

0 comments on commit 67d5854

Please sign in to comment.