Skip to content

Commit

Permalink
0.8.2 release prep.
Browse files Browse the repository at this point in the history
  • Loading branch information
metasim committed Sep 23, 2019
1 parent 8bcac6f commit 315b50d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 20 deletions.
2 changes: 2 additions & 0 deletions docs/src/main/paradox/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### 0.8.2

* Added ability to pass config options to convenience PySpark session constructor. ([#361](https://github.com/locationtech/rasterframes/issues/361))
* Bumped Spark dependency to version 2.3.4. ([#350](https://github.com/locationtech/rasterframes/issues/350))
* Fixed handling of aggregate extent and image size on GeoTIFF writing. ([#362](https://github.com/locationtech/rasterframes/issues/362))
* Fixed issue with `RasterSourceDataSource` swallowing exceptions. ([#267](https://github.com/locationtech/rasterframes/issues/267))
* Fixed SparkML memory pressure issue caused by unnecessary reevaluation, overallocation, and primitive boxing. ([#343](https://github.com/locationtech/rasterframes/issues/343))
Expand Down
2 changes: 1 addition & 1 deletion project/RFDependenciesPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ object RFDependenciesPlugin extends AutoPlugin {
),

// NB: Make sure to update the Spark version in pyrasterframes/python/setup.py
rfSparkVersion := "2.3.3",
rfSparkVersion := "2.3.4",
rfGeoTrellisVersion := "2.3.1",
rfGeoMesaVersion := "2.2.1",
//dependencyOverrides += "com.azavea.gdal" % "gdal-warp-bindings" % "33.58d4965"
Expand Down
16 changes: 0 additions & 16 deletions pyrasterframes/src/main/python/docs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,9 @@
# SPDX-License-Identifier: Apache-2.0
#

import os

from pweave import PwebPandocFormatter


def docs_dir():
return os.path.dirname(os.path.realpath(__file__))


# This is temporary until we port to run on web assets.
def resource_dir():
# we may consider using gitpython which I think would be appropriate in the context of building docs
# see https://stackoverflow.com/a/41920796/2787937
here = docs_dir()
test_resource = os.path.realpath(os.path.join(here, '..', '..', '..', 'src', 'test', 'resources'))

return test_resource


class PegdownMarkdownFormatter(PwebPandocFormatter):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
Expand Down
2 changes: 1 addition & 1 deletion pyrasterframes/src/main/python/pyrasterframes/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
#

# Translating Java version from version.sbt to PEP440 norms
__version__ = '0.8.2.dev0'
__version__ = '0.8.2'
2 changes: 1 addition & 1 deletion pyrasterframes/src/main/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pytz
Shapely>=1.6.0
pyspark==2.3.3 # See issue # 154
pyspark==2.3.4 # See issue # 154
numpy>=1.7
pandas>=0.25.0
matplotlib<3.0.0 # no python 2.7 support after v2.x.x
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.8.2-SNAPSHOT"
version in ThisBuild := "0.8.2"

0 comments on commit 315b50d

Please sign in to comment.