Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## [0.5.0] - 2026-07-10

### What's Changed

* feat: ST_IsClosed by @oglego in https://github.com/datafusion-contrib/geodatafusion/pull/69
* chore: Update version tag and DataFusion compatibility matrix for release. by @sharkinsspatial in https://github.com/datafusion-contrib/geodatafusion/pull/70
* ci: Set up python trusted publishing by @kylebarron in https://github.com/datafusion-contrib/geodatafusion/pull/65
* fix: Merge all wheel artifacts into dist for publish discovery. by @sharkinsspatial in https://github.com/datafusion-contrib/geodatafusion/pull/72
* fix: Correct datafusion version pin range for Python. by @sharkinsspatial in https://github.com/datafusion-contrib/geodatafusion/pull/73
* chore: Python 0.3.1 release by @sharkinsspatial in https://github.com/datafusion-contrib/geodatafusion/pull/74
* fix: Correct version tag for Python release. by @sharkinsspatial in https://github.com/datafusion-contrib/geodatafusion/pull/75
* feat: Add ST_IsEmpty by @ianthetechie in https://github.com/datafusion-contrib/geodatafusion/pull/76
* feat: Add ST_LineMerge by @ianthetechie in https://github.com/datafusion-contrib/geodatafusion/pull/78
* fix: Use topological (recursive) emptiness by @ianthetechie in https://github.com/datafusion-contrib/geodatafusion/pull/80
* feat: Add ST_Dump by @ianthetechie in https://github.com/datafusion-contrib/geodatafusion/pull/81
* chore: Datafusion 54 upgrade by @kylebarron in https://github.com/datafusion-contrib/geodatafusion/pull/83

### New Contributors

* @oglego made their first contribution in https://github.com/datafusion-contrib/geodatafusion/pull/69
* @ianthetechie made their first contribution in https://github.com/datafusion-contrib/geodatafusion/pull/76

**Full Changelog**: https://github.com/datafusion-contrib/geodatafusion/compare/v0.4.0...v0.5.0

## [0.4.0] - 2026-03-30

### What's Changed
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ exclude = ["python"]
resolver = "2"

[workspace.package]
version = "0.4.0"
version = "0.5.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2024"
license = "MIT OR Apache-2.0"
Expand All @@ -36,7 +36,7 @@ geoarrow-flatgeobuf = "0.8.0"
geoarrow-expr-geo = "0.8.0"
geoarrow-geojson = "0.8.0"
geoarrow-schema = "0.8.0"
geodatafusion = { path = "rust/geodatafusion", version = "0.4.0" }
geodatafusion = { path = "rust/geodatafusion", version = "0.5.0" }
geohash = "0.13.1"
geojson = "0.24"
geoparquet = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Add to your `Cargo.toml`:
```toml
[dependencies]
datafusion = "54.0"
geodatafusion = "0.4"
geodatafusion = "0.5"
```

## Functions supported
Expand Down
Loading