Skip to content

Commit d03d95f

Browse files
authored
Merge pull request #660 from jbouffard/0.4.1-release
0.4.1 Release
2 parents bc63e03 + 85c22b7 commit d03d95f

File tree

8 files changed

+22
-10
lines changed

8 files changed

+22
-10
lines changed

.travis.yml

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

6666
before_deploy:
6767
- export GEOPYSPARK_VERSION_SUFFIX="-${TRAVIS_COMMIT:0:7}"
68-
- aws s3 rm s3://geopyspark-dependency-jars/geotrellis-backend-assembly-0.4.0.jar
68+
- aws s3 rm s3://geopyspark-dependency-jars/geotrellis-backend-assembly-0.4.1.jar
6969

7070
deploy:
7171
- provider: script

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ rwildcard=$(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst
66

77
JAR-PATH := geopyspark/jars
88

9-
ASSEMBLYNAME := geotrellis-backend-assembly-0.4.0.jar
9+
ASSEMBLYNAME := geotrellis-backend-assembly-0.4.1.jar
1010
BUILD-ASSEMBLY := geopyspark-backend/geotrellis/target/scala-2.11/${ASSEMBLYNAME}
1111
DIST-ASSEMBLY := ${JAR-PATH}/${ASSEMBLYNAME}
1212

13-
WHEELNAME := geopyspark-0.4.0-py3-none-any.whl
13+
WHEELNAME := geopyspark-0.4.1-py3-none-any.whl
1414
WHEEL := dist/${WHEELNAME}
1515

1616
SCALA_SRC := $(call rwildcard, geopyspark-backend/geotrellis/src/, *.scala)

docs/CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ Changelog
22
==========
33

44

5+
0.4.1
6+
------
7+
8+
Bug Fixes
9+
^^^^^^^^^
10+
11+
There was a bug in the Scala backend in 0.4.0 that caused certain layers
12+
on S3 to not be read. This has since been resolved and 0.4.1 will have this
13+
fixed Scala backend. No other notable changes/fixes have been done between
14+
0.4.0 and 0.4.1.
15+
16+
517
0.4.0
618
------
719

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
jar = 'geotrellis-backend-assembly-0.2.2.jar'
3333

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

3838
sys.path.insert(0, path.abspath(os.curdir))
@@ -73,9 +73,9 @@
7373
# built documents.
7474
#
7575
# The short X.Y version.
76-
version = '0.4.0'
76+
version = '0.4.1'
7777
# The full version, including alpha/beta/rc tags.
78-
release = '0.4.0'
78+
release = '0.4.1'
7979

8080
# The language for content autogenerated by Sphinx. Refer to documentation
8181
# for a list of supported languages.

geopyspark-backend/project/Version.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
object Version {
2-
val geopyspark = "0.4.0"
2+
val geopyspark = "0.4.1"
33
val geotrellis = "2.0.0-SNAPSHOT"
44
val scala = "2.11.11"
55
val scalaTest = "2.2.0"

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.4.0/' + JAR
13+
JAR_URL = 'https://github.com/locationtech-labs/geopyspark/releases/download/v0.4.1/' + JAR
1414
DEFAULT_JAR_PATH = path.join(CWD, 'jars')
1515
CONF = path.join(CWD, 'command', 'geopyspark.conf')
1616

geopyspark/geopyspark_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from os import path
33

44
"""GeoPySpark version."""
5-
VERSION = '0.4.0'
5+
VERSION = '0.4.1'
66

77
"""Backend jar name."""
88
JAR = 'geotrellis-backend-assembly-' + VERSION + '.jar'

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.4.0',
10+
version='0.4.1',
1111
author='Jacob Bouffard, James McClain',
1212
1313
download_url='http://github.com/locationtech-labs/geopyspark',

0 commit comments

Comments
 (0)