Skip to content

Commit ff4d303

Browse files
authored
Merge pull request #487 from jbouffard/pre-0.2.1/versions
Updates for v0.2.1
2 parents 08699fb + defaf54 commit ff4d303

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

docs/CHANGELOG.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,24 @@ changes will be discussed below.
8686
- Updated all of the docstrings to reflect the new changes.
8787
- All of the documentation has been updated to reflect the new chnagtes.
8888
- Example jupyter notebooks have been added.
89+
90+
91+
0.2.1
92+
------
93+
94+
0.2.1 adds two major bug fixes for the ``catalog.query`` and ``geotiff.get``
95+
functions as well as a few other minor changes/additions.
96+
97+
98+
**geopyspark**
99+
100+
- Updated description in ``setup.py``.
101+
102+
**geopyspark.geotrellis**
103+
104+
- Fixed a bug in ``catalog.query`` where the query would fail if the geometry
105+
used for querying was in a different projection than the source layer.
106+
- ``partition_bytes`` can now be set in the ``geotiff.get`` function when
107+
reading from S3.
108+
- Setting ``max_tile_size`` and ``num_partitions`` in ``geotiff.get`` will now
109+
work when trying to read geotiffs from S3.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
jar = 'geotrellis-backend-assembly-0.2.0.jar'
3333

3434
if not path.isfile(path.join('geopyspark/jars', jar)):
35-
url = 'https://github.com/locationtech-labs/geopyspark/releases/download/v0.2.0/'
35+
url = 'https://github.com/locationtech-labs/geopyspark/releases/download/v0.2.1/'
3636
subprocess.call(['curl', '-L', url+jar, '-o', path.join('geopyspark/jars', jar)])
3737

3838
sys.path.insert(0, path.abspath(os.curdir))

geopyspark/command/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from geopyspark.geopyspark_constants import JAR, CWD
1111

1212

13-
JAR_URL = 'https://github.com/locationtech-labs/geopyspark/releases/download/v0.2.0/' + JAR
13+
JAR_URL = 'https://github.com/locationtech-labs/geopyspark/releases/download/v0.2.1/' + JAR
1414
DEFAULT_JAR_PATH = path.join(CWD, 'jars')
1515
CONF = path.join(CWD, 'command', 'geopyspark.conf')
1616

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup_args = dict(
99
name='geopyspark',
10-
version='0.2.0',
10+
version='0.2.1',
1111
author='Jacob Bouffard, James McClain',
1212
1313
download_url='http://github.com/locationtech-labs/geopyspark',

0 commit comments

Comments
 (0)