Skip to content

Commit 533e285

Browse files
authored
Merge pull request #13 from hotdata-dev/release/v0.0.2
chore: release v0.0.2
2 parents 32c7e69 + d0f8fba commit 533e285

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.0.2] - 2025-12-17
9+
10+
### Added
11+
- DuckDB-style table functions for catalog introspection:
12+
- `ducklake_snapshots()`, `ducklake_schemas()`, `ducklake_tables()`
13+
- `ducklake_columns()`, `ducklake_data_files()`, `ducklake_delete_files()`
14+
- Snapshot-pinned catalog ensuring consistent reads across a query session
15+
16+
## [0.0.1] - 2025-10-25
17+
18+
Initial release.
19+
20+
### Added
21+
- Read-only SQL queries against DuckLake catalogs via DataFusion
22+
- Support for local filesystem and S3/MinIO object stores
23+
- Row-level delete support (merge-on-read)
24+
- Filter pushdown to Parquet
25+
- Query-scoped snapshot isolation
26+
27+
[0.0.2]: https://github.com/hotdata-dev/datafusion-ducklake/compare/v0.0.1...v0.0.2
28+
[0.0.1]: https://github.com/hotdata-dev/datafusion-ducklake/releases/tag/v0.0.1

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "datafusion-ducklake"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2024"
5-
authors = ["[email protected]"]
5+
66
description = "DuckLake query engine for rust, built with datafusion."
77
license = "Apache-2.0"
88
repository = "https://github.com/hotdata-dev/datafusion-ducklake"

0 commit comments

Comments
 (0)