Skip to content

Commit 67a0cdc

Browse files
author
Milos Colic
authored
Merge pull request #443 from databrickslabs/releases/v_0.3.12
0.3.12 release.
2 parents 4e9e2b9 + 44b6722 commit 67a0cdc

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## v0.3.12
22
- Make JTS default Geometry Provider
3+
- Add raster tile functions.
4+
- Expand the support for raster manipulation.
5+
- Add abstractions for running distributed gdal_translate, gdalwarp, gdalcalc, etc.
6+
- Add RST_BoundingBox, RST_Clip, RST_CombineAvg, RST_CombineAvgAgg, RST_FromBands, RST_FromFile, RST_GetNoData,
7+
RST_InitNoData, RST_Merge, RST_MergeAgg, RST_NDVI, RST_ReTile, RST_SetNoData, RST_Subdivide
8+
- Add RST_Tessellate that generates H3 tiles from rasters.
9+
- Add RST_ToOverlappingTiles that generates tiles with overlapping areas from rasters.
10+
- Add GDAL generic format reader.
311

412
## v0.3.11
513
- Update the CONTRIBUTING.md to follow the standard process.

R/sparkR-mosaic/sparkrMosaic/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: sparkrMosaic
22
Title: SparkR bindings for Databricks Mosaic
3-
Version: 0.3.11
3+
Version: 0.3.12
44
Authors@R:
55
person("Robert", "Whiffin", , "[email protected]", role = c("aut", "cre")
66
)

R/sparklyr-mosaic/sparklyrMosaic/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: sparklyrMosaic
22
Title: sparklyr bindings for Databricks Mosaic
3-
Version: 0.3.11
3+
Version: 0.3.12
44
Authors@R:
55
person("Robert", "Whiffin", , "[email protected]", role = c("aut", "cre")
66
)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Stuart Lynn, Milos Colic, Erni Durdevic, Robert Whiffin, Timo Roest'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = "v0.3.11"
25+
release = "v0.3.12"
2626

2727

2828
# -- General configuration ---------------------------------------------------

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@
289289
<scala.version>2.12.10</scala.version>
290290
<scala.compat.version>2.12</scala.compat.version>
291291
<spark.version>3.3.2</spark.version>
292-
<mosaic.version>0.3.11</mosaic.version>
292+
<mosaic.version>0.3.12</mosaic.version>
293293
</properties>
294294
</profile>
295295
</profiles>

python/mosaic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
from .models import SpatialKNN
55
from .readers import read
66

7-
__version__ = "0.3.11"
7+
__version__ = "0.3.12"

0 commit comments

Comments
 (0)