Skip to content

Commit

Permalink
Merge pull request #485 from databrickslabs/releases/v_0.3.14
Browse files Browse the repository at this point in the history
Release for v_0.3.14.
  • Loading branch information
Milos Colic authored Dec 14, 2023
2 parents 2154ab8 + 802cbd6 commit d97cd07
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.3.14
- Fixes for Warning and Error messages on mosaic_enable call.

## v0.3.13
- R bindings generation fixed and improved.
- Remove usage of /vsimem/ drivers for GDAL due to memory leaks.
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.13
Version: 0.3.14
Authors@R:
person("Robert", "Whiffin", , "robert.whiffin@databricks.com", 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.13
Version: 0.3.14
Authors@R:
person("Robert", "Whiffin", , "robert.whiffin@databricks.com", 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.13.tar.gz", repos = NULL)
install.packages("sparklyrMosaic_0.3.14.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.13"
release = "v0.3.14"


# -- 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.13</mosaic.version>
<mosaic.version>0.3.14</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.13"
__version__ = "0.3.14"
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.13"
val mosaicVersion: String = "0.3.14"

private var instance: Option[MosaicContext] = None

Expand Down

0 comments on commit d97cd07

Please sign in to comment.