Skip to content

Commit

Permalink
Merge pull request #481 from databrickslabs/releases/v_0.3.13
Browse files Browse the repository at this point in the history
Prepare v0.3.13 release.
  • Loading branch information
Milos Colic authored Dec 12, 2023
2 parents 232c955 + 9281aec commit ec33f20
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v0.3.13
- R bindings generation fixed and improved.
- Remove usage of /vsimem/ drivers for GDAL due to memory leaks.
- Add support for MapAlgebra expressions via RST_MapAlgebra.
- Add support for custom combine python functions via RST_DerivedBand.
- Improve test coverage.
- Allow for GDAL configuration via spark config (use 'spark.databricks.labs.mosaic.gdal.' prefix).

## v0.3.12
- Make JTS default Geometry Provider
- Add raster tile functions.
Expand Down
2 changes: 1 addition & 1 deletion R/sparkR-mosaic/sparkrMosaic/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: sparkrMosaic
Title: SparkR bindings for Databricks Mosaic
Version: 0.3.12
Version: 0.3.13
Authors@R:
person("Robert", "Whiffin", , "[email protected]", role = c("aut", "cre")
)
Expand Down
2 changes: 1 addition & 1 deletion R/sparklyr-mosaic/sparklyrMosaic/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: sparklyrMosaic
Title: sparklyr bindings for Databricks Mosaic
Version: 0.3.12
Version: 0.3.13
Authors@R:
person("Robert", "Whiffin", , "[email protected]", role = c("aut", "cre")
)
Expand Down
2 changes: 1 addition & 1 deletion R/sparklyr-mosaic/tests.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ install.packages("sparklyr", repos="")
library(sparklyr)

spark_home_set("/usr/spark-download/unzipped/spark-3.3.2-bin-hadoop3")
install.packages("sparklyrMosaic_0.3.12.tar.gz", repos = NULL)
install.packages("sparklyrMosaic_0.3.13.tar.gz", repos = NULL)
library(sparklyrMosaic)

# find the mosaic jar in staging
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Stuart Lynn, Milos Colic, Erni Durdevic, Robert Whiffin, Timo Roest'

# The full version, including alpha/beta/rc tags
release = "v0.3.12"
release = "v0.3.13"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
<scala.version>2.12.10</scala.version>
<scala.compat.version>2.12</scala.compat.version>
<spark.version>3.3.2</spark.version>
<mosaic.version>0.3.12</mosaic.version>
<mosaic.version>0.3.13</mosaic.version>
</properties>
</profile>
</profiles>
Expand Down
2 changes: 1 addition & 1 deletion python/mosaic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .models import SpatialKNN
from .readers import read

__version__ = "0.3.12"
__version__ = "0.3.13"
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ object MosaicContext extends Logging {

val tmpDir: String = Files.createTempDirectory("mosaic").toAbsolutePath.toString

val mosaicVersion: String = "0.3.12"
val mosaicVersion: String = "0.3.13"

private var instance: Option[MosaicContext] = None

Expand Down

0 comments on commit ec33f20

Please sign in to comment.