Bump version, add changes, update authors.

This commit is contained in:
Sean Gillies 2014-12-16 12:49:43 -07:00
parent e7c3f33525
commit 06649e2760
3 changed files with 12 additions and 4 deletions

View File

@ -9,5 +9,6 @@ Chrisophe Gohlke https://github.com/cgohlke
Robin Wilson https://github.com/robintw
Mike Toews https://github.com/mwtoews
Amit Kapadia https://github.com/kapadia
Alessandro Amici https://github.com/alexamici
See also https://github.com/mapbox/rasterio/graphs/contributors.

View File

@ -1,8 +1,16 @@
Changes
=======
0.1.5.1 (2014-11-03)
--------------------
0.16.0 (2014-12-16)
-------------------
- More graceful, slice-like handling of windows (#191).
- Addition of optional z coordinate to warp.transform() (#199).
- Relax excessively strict transform guard, allowing translation of rasters
with no georeferencing (#210).
- Removal of setuptools from the package's install_requires (#222).
0.15.1 (2014-11-03)
-------------------
- Fix incorrect use of output.dtype (#196).
0.15 (2014-10-11)

View File

@ -18,7 +18,7 @@ from rasterio.transform import Affine, guard_transform
__all__ = [
'band', 'open', 'drivers', 'copy', 'pad']
__version__ = "0.15.1"
__version__ = "0.16"
log = logging.getLogger('rasterio')
class NullHandler(logging.Handler):
@ -161,4 +161,3 @@ def pad(array, transform, pad_width, mode=None, **kwargs):
padded_trans[2] -= pad_width*padded_trans[0]
padded_trans[5] -= pad_width*padded_trans[4]
return padded_array, Affine(*padded_trans[:6])