Skip to content

Commit 38c5932

Browse files
committed
Update
1 parent 9e842aa commit 38c5932

3 files changed

Lines changed: 31 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [2.0.3] - 2026-04-20
8+
9+
### Fixed
10+
11+
- #65: Segmentation fault when close connection or cursor
12+
- #63: Exception ignored in: function Connection.__del__
13+
- #58: readline_timed() method appending \n to data received
14+
- #56: Variable 'dsn' needs to be initialized in create_database()
15+
- #53: Loss of scale when reading numeric with zero value
16+
- #51: Exception ignored in: function Connection.__del__ ... connection shutdown
17+
718
## [2.0.2] - 2025-05-21
819

920
### Fixed

docs/changelog.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Changelog
33
#########
44

5+
Version 2.0.3
6+
=============
7+
8+
- #65: Segmentation fault when close connection or cursor
9+
- #63: Exception ignored in: function Connection.__del__
10+
- #58: readline_timed() method appending \n to data received
11+
- #56: Variable 'dsn' needs to be initialized in create_database()
12+
- #53: Loss of scale when reading numeric with zero value
13+
- #51: Exception ignored in: function Connection.__del__ ... connection shutdown
14+
515
Version 2.0.2
616
=============
717

pyproject.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,23 @@ allow-direct-references = true
5555
dependencies = [
5656
]
5757

58+
[tool.hatch.envs.gdocs]
59+
dependencies = [
60+
"great-docs",
61+
]
62+
63+
[tool.hatch.envs.gdocs.scripts]
64+
build = "great-docs build"
65+
preview = "great-docs preview"
66+
5867
[tool.hatch.envs.hatch-test]
5968
extra-args = ["--host=localhost"]
6069
extra-dependencies = [
6170
"packaging>=25.0",
6271
]
6372

6473
[[tool.hatch.envs.hatch-test.matrix]]
65-
python = ["3.11", "3.12", "3.13"]
74+
python = ["3.11", "3.12", "3.13", "3.14"]
6675

6776
[tool.hatch.envs.doc]
6877
detached = false

0 commit comments

Comments
 (0)