diff --git a/CHANGES.txt b/CHANGES.txt index 4a76f88c..37510337 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,11 @@ Changes ======= +0.35.0.post1 (2016-05-04) +------------------------- +- Bug fix: added rasterfill.cpp to MANIFEST.in so it is included in source + distributions no matter the build system's GDAL version (#690). + 0.35.0 (2016-05-04) ------------------- - Requirements: affine requirement upped to >=1.3.0 (#430). diff --git a/rasterio/__init__.py b/rasterio/__init__.py index b0c758e1..80e042cb 100644 --- a/rasterio/__init__.py +++ b/rasterio/__init__.py @@ -32,7 +32,7 @@ from rasterio import _err, coords, enums, vfs __all__ = [ 'band', 'open', 'copy', 'pad'] -__version__ = "0.35.0" +__version__ = "0.35.0.post1" __gdal_version__ = gdal_version() # Rasterio attaches NullHandler to the 'rasterio' logger and its