Skip to content

Commit

Permalink
Update change log
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean C. Gillies committed Jul 27, 2018
1 parent 02c31e6 commit e5a6efc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -11,6 +11,7 @@ Bug fixes:
- In using rio-warp, the --src-bounds option can now override the bounds of the
source dataset when --dimensions is used (#1419).
- Bounds of rotated rasters are now calculated correctly (#1422).
- A band indexing bug in reproject() (#1350) has been fixed (#1424).

1.0.1 (2018-07-23)
------------------
Expand Down
4 changes: 2 additions & 2 deletions tests/test_warp.py
Expand Up @@ -1288,8 +1288,8 @@ def test_reproject_dst_alpha(path_rgb_msk_byte_tif):
assert dst_arr[3].any()


@pytest.mark.skipif(
(gdal_version.major == 2 and gdal_version.minor == 2),
@pytest.mark.xfail(
rasterio.__gdal_version__ in ['2.2.0', '2.2.1', '2.2.2', '2.2.3'],
reason=("GDAL had regression in 2.2.X series, fixed in 2.2.4,"
" reproject used dst index instead of src index when destination was single band"))
def test_issue1350():
Expand Down

0 comments on commit e5a6efc

Please sign in to comment.