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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ build/
htmlcov/

.DS_Store
integration_test.py
smoke_test.py
Comment on lines +14 to +15

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

super nit: these look like local ad-hoc scripts unrelated to the release; they also don't follow the project's test_*.py pytest convention (so they'd be invisible to test discovery even if committed). Ignoring generic top-level names like these in the shared repo could mask a future legitimately-named file. Consider a personal .git/info/exclude entry, or scope these under a path like scratch/ instead. (not blocking)

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.1.4] - 2026-05-27

### Changed

- Release 0.1.4
Comment on lines +11 to +15

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: this is the update_changelog.py placeholder that's used when [Unreleased] is empty (per RELEASING.md step 1). Between 0.1.3 and 0.1.4 the hotdata SDK was bumped to 0.2.5 (#20) — worth calling out here so the auto-generated GitHub Release notes (via extract-changelog.py) aren't just - Release 0.1.4. (not blocking)


## [0.1.3] - 2026-05-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "hotdata-ibis"
version = "0.1.3"
version = "0.1.4"
description = "Ibis backend for Hotdata federated SQL API (depends on the hotdata SDK only; not hotdata-runtime)"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading