Skip to content

Commit

Permalink
Merge pull request #487 from jbouffard/pre-0.2.1/versions
Browse files Browse the repository at this point in the history
Updates for v0.2.1
  • Loading branch information
Jacob Bouffard committed Aug 25, 2017
2 parents 08699fb + defaf54 commit ff4d303
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion geopyspark/command/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit ff4d303

Please sign in to comment.