Skip to content

Commit cc8e856

Browse files
chore(release): 2.0.0 [skip ci]
# [2.0.0](v1.3.1...v2.0.0) (2025-10-09) ### Features * add multi-line input support for text and textual modes ([2439e8b](2439e8b)) ### BREAKING CHANGES * none
1 parent 2439e8b commit cc8e856

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [2.0.0](https://github.com/AnthusAI/SQLBot/compare/v1.3.1...v2.0.0) (2025-10-09)
2+
3+
4+
### Features
5+
6+
* add multi-line input support for text and textual modes ([2439e8b](https://github.com/AnthusAI/SQLBot/commit/2439e8b6d6a26df9ad34cfa97c3f26a8e0d4e48e))
7+
8+
9+
### BREAKING CHANGES
10+
11+
* none
12+
113
## [1.3.1](https://github.com/AnthusAI/SQLBot/compare/v1.3.0...v1.3.1) (2025-10-07)
214

315

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.4.0"
7+
version = "2.0.0"
88
description = "SQLBot - Database Query Bot with AI-powered natural language processing"
99
readme = "README.md"
1010
requires-python = ">=3.8"
@@ -91,7 +91,7 @@ extend-exclude = '''
9191
'''
9292

9393
[tool.mypy]
94-
python_version = "1.3.1"
94+
python_version = "2.0.0"
9595
warn_return_any = true
9696
warn_unused_configs = true
9797
disallow_untyped_defs = true

sqlbot/__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.3.1"
3+
__version__ = "2.0.0"
44
__author__ = "SQLBot Team"
55
__email__ = "team@sqlbot.dev"
66

sqlbot/__version__.py

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

44

0 commit comments

Comments
 (0)