From 396d5f0c83a4990a7eb2ab129cfb994c4cd084e8 Mon Sep 17 00:00:00 2001 From: Zac Farrell Date: Wed, 1 Apr 2026 12:03:52 -0700 Subject: [PATCH] chore(release): prepare v0.1.1 --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8e0c61..40afc3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.1] - 2026-04-01 + +### Added +- Support for list/array column types in DuckLake type mapping (#89) + +### Fixed +- Missing `end_snapshot IS NULL` filter in Postgres and MySQL `get_table_structure()` (#88) + +### Changed +- Updated transitive dependencies for security fixes (#94) + ## [0.1.0] - 2026-03-11 ### Changed @@ -88,6 +99,7 @@ Initial release. - Filter pushdown to Parquet - Query-scoped snapshot isolation +[0.1.1]: https://github.com/hotdata-dev/datafusion-ducklake/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/hotdata-dev/datafusion-ducklake/compare/v0.0.7...v0.1.0 [0.0.7]: https://github.com/hotdata-dev/datafusion-ducklake/compare/v0.0.6...v0.0.7 [0.0.6]: https://github.com/hotdata-dev/datafusion-ducklake/compare/v0.0.5...v0.0.6 diff --git a/Cargo.lock b/Cargo.lock index 73a3f70..5333ad9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1799,7 +1799,7 @@ checksum = "e44b41f3e8267c6cf3eec982d63f34db9f1dd5f30abfd2e1f124f0871708952e" [[package]] name = "datafusion-ducklake" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "arrow 57.3.0", diff --git a/Cargo.toml b/Cargo.toml index ed9f5ba..b727392 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "benchmark"] [package] name = "datafusion-ducklake" -version = "0.1.0" +version = "0.1.1" edition = "2024" authors = ["zac@hotdata.dev", "shefeek@hotdata.dev", "anoop@hotdata.dev"] description = "DuckLake query engine for rust, built with datafusion."