diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71c..a915e8c5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e0ee6038..a169f08f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [0.1.1](https://github.com/nadeem4/nl2sql/compare/v0.1.0...v0.1.1) (2026-09-07) + + +### Bug Fixes + +* **ci:** build the API image from the repository root ([495c1c3](https://github.com/nadeem4/nl2sql/commit/495c1c3840508e8eac69696af81840b2884fb2d8)) +* **ci:** build the API image from the repository root ([6ce3c49](https://github.com/nadeem4/nl2sql/commit/6ce3c4925c8e3770904ab50aa3773928711321d7)) +* **cli:** repair the doctor connectivity check ([2abb600](https://github.com/nadeem4/nl2sql/commit/2abb60004d48a983d8cf39f8c075bf91386495eb)) +* **cli:** repair the doctor connectivity check ([1cc9e44](https://github.com/nadeem4/nl2sql/commit/1cc9e44b5a16a69d0e0a28c473e568b39dbc8a8d)) +* **config:** treat an empty providers list as no secret providers ([97fe5d2](https://github.com/nadeem4/nl2sql/commit/97fe5d28cce7c9d6ca1b694c7c97b9c4a07e690f)) +* **config:** treat an empty providers list as no secret providers ([d08a45c](https://github.com/nadeem4/nl2sql/commit/d08a45cad76dcc372c11010ec9629aa9ce605a92)) +* **demo:** make the docker demo datasources reachable ([b7edaf9](https://github.com/nadeem4/nl2sql/commit/b7edaf99125e04b7731f87d555e6bf86e7f9affb)) +* **demo:** make the docker demo datasources reachable ([1381c9c](https://github.com/nadeem4/nl2sql/commit/1381c9c1bdd9de45ae0cb93c29b60019babefb3e)) +* **demo:** survive an unusable prompt during docker demo setup ([#79](https://github.com/nadeem4/nl2sql/issues/79)) ([6b9f712](https://github.com/nadeem4/nl2sql/commit/6b9f7120d285840626b32ecf61ee4cae0efca1e2)) +* **pipeline:** keep the error code when a routing error reaches the runtime ([#78](https://github.com/nadeem4/nl2sql/issues/78)) ([2cf2170](https://github.com/nadeem4/nl2sql/commit/2cf21707dfeb6b1496a41845acf0968cb76d1f9e)) +* **pipeline:** raise a real exception when no subgraph matches ([#75](https://github.com/nadeem4/nl2sql/issues/75)) ([74f283b](https://github.com/nadeem4/nl2sql/commit/74f283b840a99b119f25565c5d19848966e8f8dc)) + + +### Documentation + +* sync documentation with recent changes ([#77](https://github.com/nadeem4/nl2sql/issues/77)) ([3dd87e6](https://github.com/nadeem4/nl2sql/commit/3dd87e6c73ca520b9564d31873e48004cc711c1c)) + ## 0.1.0 (2026-08-28) diff --git a/packages/adapter-sdk/pyproject.toml b/packages/adapter-sdk/pyproject.toml index 8bbc5db1..317a66f6 100644 --- a/packages/adapter-sdk/pyproject.toml +++ b/packages/adapter-sdk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "nl2sql-adapter-sdk" -version = "0.1.0" # x-release-please-version +version = "0.1.1" # x-release-please-version description = "Shared adapter contracts for NL2SQL" requires-python = ">=3.9" dependencies = [ diff --git a/packages/api/pyproject.toml b/packages/api/pyproject.toml index a408cfd8..7f11f84d 100644 --- a/packages/api/pyproject.toml +++ b/packages/api/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "nl2sql-api" -version = "0.1.0" # x-release-please-version +version = "0.1.1" # x-release-please-version description = "API layer for NL2SQL engine" requires-python = ">=3.9" dependencies = [ diff --git a/packages/nl2sql/pyproject.toml b/packages/nl2sql/pyproject.toml index 6d0ac267..a689d0f7 100644 --- a/packages/nl2sql/pyproject.toml +++ b/packages/nl2sql/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "nl2sql-engine" -version = "0.1.0" # x-release-please-version +version = "0.1.1" # x-release-please-version description = "Natural-language-to-SQL engine, CLI and database adapters" readme = "README.md" requires-python = ">=3.9" diff --git a/pyproject.toml b/pyproject.toml index 3484fcc3..b10f11b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "nl2sql-monorepo" -version = "0.1.0" +version = "0.1.1" description = "Monorepo for NL2SQL Agent" readme = "README.md" requires-python = ">=3.9"