Skip to content

Commit ece9fae

Browse files
chore(release): 1.0.8 [skip ci]
## [1.0.8](v1.0.7...v1.0.8) (2025-09-13) ### Bug Fixes * force banner display at start of main() for --no-repl mode ([8345d1e](8345d1e)) * move banner display before query execution ([e83976e](e83976e))
1 parent 8345d1e commit ece9fae

4 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [1.0.8](https://github.com/AnthusAI/SQLBot/compare/v1.0.7...v1.0.8) (2025-09-13)
2+
3+
4+
### Bug Fixes
5+
6+
* force banner display at start of main() for --no-repl mode ([8345d1e](https://github.com/AnthusAI/SQLBot/commit/8345d1e5fa2848061e5eb067660c1dc037d8858d))
7+
* move banner display before query execution ([e83976e](https://github.com/AnthusAI/SQLBot/commit/e83976e78f386072a45f0cfa23ad0d6b1076f346))
8+
19
## [1.0.7](https://github.com/AnthusAI/SQLBot/compare/v1.0.6...v1.0.7) (2025-09-13)
210

311

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sqlbot"
7-
version = "1.0.7"
7+
version = "1.0.8"
88
description = "SQLBot - Database Query Bot with AI-powered natural language processing"
99
readme = "README.md"
1010
requires-python = ">=3.8"
@@ -83,7 +83,7 @@ extend-exclude = '''
8383
'''
8484

8585
[tool.mypy]
86-
python_version = "1.0.7"
86+
python_version = "1.0.8"
8787
warn_return_any = true
8888
warn_unused_configs = true
8989
disallow_untyped_defs = true

qbot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""SQLBot: Database Query Bot with AI-powered natural language processing."""
22

3-
__version__ = "1.0.7"
3+
__version__ = "1.0.8"
44
__author__ = "SQLBot Team"
55
__email__ = "team@qbot.dev"
66

qbot/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information for QBot."""
2-
__version__ = "1.0.7"
2+
__version__ = "1.0.8"
33

44

0 commit comments

Comments
 (0)