mirror of
https://github.com/rasterio/rasterio.git
synced 2025-12-08 17:36:12 +00:00
Bump version, add changes, update authors.
This commit is contained in:
parent
e7c3f33525
commit
06649e2760
@ -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.
|
||||
|
||||
12
CHANGES.txt
12
CHANGES.txt
@ -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)
|
||||
|
||||
@ -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])
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user