diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index ae21d95d..f8a34680 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -86,3 +86,24 @@ changes will be discussed below. - Updated all of the docstrings to reflect the new changes. - All of the documentation has been updated to reflect the new chnagtes. - Example jupyter notebooks have been added. + + +0.2.1 +------ + +0.2.1 adds two major bug fixes for the ``catalog.query`` and ``geotiff.get`` +functions as well as a few other minor changes/additions. + + +**geopyspark** + + - Updated description in ``setup.py``. + +**geopyspark.geotrellis** + + - Fixed a bug in ``catalog.query`` where the query would fail if the geometry + used for querying was in a different projection than the source layer. + - ``partition_bytes`` can now be set in the ``geotiff.get`` function when + reading from S3. + - Setting ``max_tile_size`` and ``num_partitions`` in ``geotiff.get`` will now + work when trying to read geotiffs from S3. diff --git a/docs/conf.py b/docs/conf.py index 723252f6..0ab02e94 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,7 +32,7 @@ jar = 'geotrellis-backend-assembly-0.2.0.jar' if not path.isfile(path.join('geopyspark/jars', jar)): - url = 'https://github.com/locationtech-labs/geopyspark/releases/download/v0.2.0/' + url = 'https://github.com/locationtech-labs/geopyspark/releases/download/v0.2.1/' subprocess.call(['curl', '-L', url+jar, '-o', path.join('geopyspark/jars', jar)]) sys.path.insert(0, path.abspath(os.curdir)) diff --git a/geopyspark/command/configuration.py b/geopyspark/command/configuration.py index 5be62088..f780475d 100644 --- a/geopyspark/command/configuration.py +++ b/geopyspark/command/configuration.py @@ -10,7 +10,7 @@ from geopyspark.geopyspark_constants import JAR, CWD -JAR_URL = 'https://github.com/locationtech-labs/geopyspark/releases/download/v0.2.0/' + JAR +JAR_URL = 'https://github.com/locationtech-labs/geopyspark/releases/download/v0.2.1/' + JAR DEFAULT_JAR_PATH = path.join(CWD, 'jars') CONF = path.join(CWD, 'command', 'geopyspark.conf') diff --git a/setup.py b/setup.py index c8ce422e..2eb6137f 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup_args = dict( name='geopyspark', - version='0.2.0', + version='0.2.1', author='Jacob Bouffard, James McClain', author_email='jbouffard@azavea.com, jmcclain@azavea.com', download_url='http://github.com/locationtech-labs/geopyspark',