Skip to content

Commit 4da2f3d

Browse files
committed
chore: update version to 0.14.0 and update changelog for new features and bug fixes
Signed-off-by: Grant Ramsay <seapagan@gmail.com>
1 parent 6f2c733 commit 4da2f3d

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ project since the first release, with the latest changes at the top.
66
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [0.14.0](https://github.com/seapagan/sqliter-py/releases/tag/0.14.0) (January 25, 2026)
10+
11+
**Closed Issues**
12+
13+
- Transaction rollback is broken ([#104](https://github.com/seapagan/sqliter-py/issues/104)) by [seapagan](https://github.com/seapagan)
14+
15+
**New Features**
16+
17+
- Add a TUI Demo Application to show off the library features ([#103](https://github.com/seapagan/sqliter-py/pull/103)) by [seapagan](https://github.com/seapagan)
18+
19+
**Bug Fixes**
20+
21+
- Fix transaction rollback bug (Issue #104) ([#106](https://github.com/seapagan/sqliter-py/pull/106)) by [seapagan](https://github.com/seapagan)
22+
23+
[`Full Changelog`](https://github.com/seapagan/sqliter-py/compare/0.13.0...0.14.0) | [`Diff`](https://github.com/seapagan/sqliter-py/compare/0.13.0...0.14.0.diff) | [`Patch`](https://github.com/seapagan/sqliter-py/compare/0.13.0...0.14.0.patch)
24+
925
## [0.13.0](https://github.com/seapagan/sqliter-py/releases/tag/0.13.0) (January 19, 2026)
1026

1127
**New Features**

pyproject.toml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[project]
55
name = "sqliter-py"
6-
version = "0.13.0"
6+
version = "0.14.0"
77
description = "Interact with SQLite databases using Python and Pydantic"
88
readme = "README.md"
99
requires-python = ">=3.9"
@@ -29,14 +29,9 @@ classifiers = [
2929
]
3030

3131
[project.optional-dependencies]
32-
demo = [
33-
"textual>=7.3.0",
34-
]
32+
demo = ["textual>=7.3.0"]
3533
extras = ["inflect==7.0.0"]
36-
full = [
37-
"inflect>=7.0.0",
38-
"textual>=7.3.0",
39-
]
34+
full = ["inflect>=7.0.0", "textual>=7.3.0"]
4035

4136
[project.scripts]
4237
sqliter-demo = "sqliter.tui:run"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)