Skip to content

Commit 00d54ee

Browse files
authored
Update version to 0.3.10 (#365)
1 parent 395dd7e commit 00d54ee

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v0.3.10
2+
- Fixed k-ring logic for BNG grid close to the edge of the grid
3+
- Fixed deprecated st_centroid2D expression
4+
- Documentation improvements
5+
- Fix handling null geometry fields for OGRFileFormat reader
6+
- Added warning for future DBR environment support
7+
- Added support for GeometryCollection
8+
- Fix intersection operations with ESRI geometry APIs
9+
- Fixed custom grid issues for grids not multiple of the root size resolution
10+
- Fixed python binding for rst_georeference
11+
- Fixed ESRI create polygon with correct path order with ESRI APIs
12+
- Fixed automatic SQL registration with GDAL
13+
114
## v0.3.9
215
- Fixed k-ring interpolation on raster data read
316

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.9
3+
Version: 0.3.10
44
Authors@R:
55
person("Robert", "Whiffin", , "robert.whiffin@databricks.com", 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.9
3+
Version: 0.3.10
44
Authors@R:
55
person("Robert", "Whiffin", , "robert.whiffin@databricks.com", 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.9"
25+
release = "v0.3.10"
2626

2727

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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.databricks.labs</groupId>
77
<artifactId>mosaic</artifactId>
8-
<version>0.3.9</version>
8+
<version>0.3.10</version>
99

1010
<properties>
1111
<minimum.coverage>80</minimum.coverage>

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.9"
7+
__version__ = "0.3.10"

0 commit comments

Comments
 (0)