Skip to content

Commit

Permalink
Update version to 0.3.6 (databrickslabs#287)
Browse files Browse the repository at this point in the history
* Update version to 0.3.6

* Updated changelog and docs conf
  • Loading branch information
edurdevic authored Jan 13, 2023
1 parent ec5d380 commit 33f2e42
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 3 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
## v0.3.6
- Added GDAL and 32 rst_* raster functions:
- RST_BandMetaData
- RST_GeoReference
- RST_IsEmpty
- RST_MemSize
- RST_MetaData
- RST_NumBands
- RST_PixelWidth
- RST_PixelHeight
- RST_RasterToGridAvg
- RST_RasterToGridMax
- RST_RasterToGridMin
- RST_RasterToGridMedian
- RST_RasterToGridCount
- RST_RasterToWorldCoord
- RST_RasterToWorldCoordX
- RST_RasterToWorldCoordY
- RST_ReTile
- RST_Rotation
- RST_ScaleX
- RST_ScaleY
- RST_SkewX
- RST_SkewY
- RST_SRID
- RST_Subdatasets
- RST_Summary
- RST_UpperLeftX
- RST_UpperLeftY
- RST_Width
- RST_Height
- RST_WorldToRasterCoord
- RST_WorldToRasterCoordX
- RST_WorldToRasterCoordY
- Fixed geometry creation from empty Seq
- Fixed landmarks_miid and candidates_miid column names parameter in KNN
- Improved docs

## v0.3.5
- Implemented KNN (K Nearest Neighbours) transformer
- Implemented grid cell functions `grid_cellkring`, `grid_cellkloop`, `grid_cellkringexplode`, and `grid_cellkloopexplode`
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.5"
release = "v0.3.6"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.databricks.labs</groupId>
<artifactId>mosaic</artifactId>
<version>0.3.6-SNAPSHOT</version>
<version>0.3.6</version>

<properties>
<minimum.coverage>80</minimum.coverage>
Expand Down
2 changes: 1 addition & 1 deletion python/mosaic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from .utils.display_handler import displayMosaic
from .models import SpatialKNN

__version__ = "0.3.6-SNAPSHOT"
__version__ = "0.3.6"

0 comments on commit 33f2e42

Please sign in to comment.