diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fe86486..30bfd91 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - ".": "0.1.0" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f01840b..377185d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.2.0](https://github.com/altertable-ai/altertable-flightsql-python/compare/v0.1.0...v0.2.0) (2025-11-25) + + +### Features + +* implement ingest method ([#4](https://github.com/altertable-ai/altertable-flightsql-python/issues/4)) ([b6cdf5a](https://github.com/altertable-ai/altertable-flightsql-python/commit/b6cdf5a630a6000d600ee751f5ee0f545a6ee205)) +* more permissive statement parameters ([a4d47ed](https://github.com/altertable-ai/altertable-flightsql-python/commit/a4d47ed43d618343d679ec907e2648ef92c39e5b)) + ## 0.1.0 (2025-11-25) diff --git a/src/altertable_flightsql/__init__.py b/src/altertable_flightsql/__init__.py index c1534f6..68ba5b0 100644 --- a/src/altertable_flightsql/__init__.py +++ b/src/altertable_flightsql/__init__.py @@ -5,7 +5,7 @@ enabling high-performance SQL queries and data analysis. """ -__version__ = "0.1.0" +__version__ = "0.2.0" from altertable_flightsql.client import Client, PreparedStatement