Update change log, version, authors

This commit is contained in:
Sean Gillies 2017-03-28 16:50:55 +02:00
parent 294b61b77a
commit 994def271a
3 changed files with 36 additions and 24 deletions

View File

@ -4,38 +4,42 @@ Authors
* Sean Gillies <sean@mapbox.com>
* Matthew Perry <perrygeo@gmail.com>
* Brendan Ward <bcward@consbio.org>
* Colin Talbert <talbertc@usgs.gov>
* Erik Seglem <erik.seglem@gmail.com>
* James McBride <jmcbride@berkeley.edu>
* Kevin Wurster <wursterk@gmail.com>
* Colin Talbert <talbertc@usgs.gov>
* James McBride <jmcbride@berkeley.edu>
* Erik Seglem <erik.seglem@gmail.com>
* James Hiebert <hiebert@uvic.ca>
* Amit Kapadia <amit@planet.com>
* Kelsey Jordahl <kjordahl@alum.mit.edu>
* dnomadb <damon@mapbox.com>
* Even Rouault <even.rouault@spatialys.com>
* Kelsey Jordahl <kjordahl@alum.mit.edu>
* Ryan Grout <rgrout@continuum.io>
* Maxim Dubinin <sim@gis-lab.info>
* Joshua Arnott <josh@snorfalorpagus.net>
* Nick Grue <nwgrue@gmail.com>
* Mike Toews <mwtoews@gmail.com>
* Johan Van de Wauw <johan.vandewauw@gmail.com>
* AsgerPetersen <asgerpetersen@gmail.com>
* Joshua Arnott <josh@snorfalorpagus.net>
* Ben Lewis <ben.lewis@ga.gov.au>
* Alessandro Amici <alexamici@gmail.com>
* mwtoews <mwtoews@gmail.com>
* Robin Wilson <robin@rtwilson.com>
* Jacques Tardie <hi@jacquestardie.org>
* Jeffrey Gerard <jgerard@climate.com>
* Nat Wilson <njwilson23@gmail.com>
* Martijn Visser <mgvisser@gmail.com>
* grovduck <matt.gregory@oregonstate.edu>
* Patrick Young <patrick.young@digitalglobe.com>
* Aldo Culquicondor <alculquicondor@gmail.com>
* Etienne B. Racine <etiennebr@gmail.com>
* Charlie Loyd <charlie@mapbox.com>
* Talbert <talbertc@usgs.gov>
* Trevor R.H. Clarke <tclarke@ball.com>
* Alexander <spatial.hast@gmail.com>
* cgohlke <cgohlke@uci.edu>
* Bas Couwenberg <sebastic@xs4all.nl>
* Johan Van de Wauw <johan.vandewauw@gmail.com>
* Chris Holden <ceholden@gmail.com>
* Robin Wilson <robin@rtwilson.com>
* Gregory Raevski <v0lat1le@users.noreply.github.com>
* Jacques Tardie <hi@jacquestardie.org>
* Nat Wilson <njwilson23@gmail.com>
* Jeffrey Gerard <jgerard@climate.com>
* Martijn Visser <mgvisser@gmail.com>
* Charlie Loyd <charlie@mapbox.com>
* Seth Fitzsimmons <seth@mojodna.net>
* Trevor R.H. Clarke <tclarke@ball.com>
* cgohlke <cgohlke@uci.edu>
* Alexander <spatial.hast@gmail.com>
* grovduck <matt.gregory@oregonstate.edu>
* Aldo Culquicondor <alculquicondor@gmail.com>
* Matt Savoie <github@flamingbear.com>
* James Seppi <james.seppi@gmail.com>
* Etienne B. Racine <etiennebr@gmail.com>
* Patrick Young <patrick.young@digitalglobe.com>
See also https://github.com/mapbox/rasterio/graphs/contributors.

View File

@ -1,14 +1,22 @@
Changes
=======
Next
----
1.0a8 (2017-03-29)
------------------
Bug fixes:
- Secrets kept in GDAL config options could have been leaked via the Python
logger. AWS keys and tokens have always been redacted, but other options like
GDAL_HTTP_USERPWD were not. Logging of GDAL config options has been removed.
- Use of Rasterio with Python threads has not been well tested in
previous versions and a bug (#986) involving shared GDAL environment
state was found. Rasterio now uses thread local variables to track
GDAL environment state and uses the appropriate GDAL API functions to
isolate the environments of child threads from each other while
permitting inheritance from the main Python thread (#993, #996, #997).
Tests using both `ThreadPoolExecutor` and `ProcessPoolExecutor` have
been added to guard against regresion.
1.0a7 (2017-02-14)
------------------

View File

@ -54,7 +54,7 @@ def window_index(*args, **kwargs):
__all__ = [
'band', 'open', 'copy', 'pad']
__version__ = "1.0a7"
__version__ = "1.0a8"
__gdal_version__ = gdal_version()
# Rasterio attaches NullHandler to the 'rasterio' logger and its