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: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0"
".": "0.1.1"
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-sdk/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 = "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 = [
Expand Down
2 changes: 1 addition & 1 deletion packages/api/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 = "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 = [
Expand Down
2 changes: 1 addition & 1 deletion packages/nl2sql/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 = "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"
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 = "nl2sql-monorepo"
version = "0.1.0"
version = "0.1.1"
description = "Monorepo for NL2SQL Agent"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
Loading