Skip to content

Commit 5390253

Browse files
Merge branch 'omnilib:main' into main
2 parents c1096fe + 82eb2d2 commit 5390253

File tree

11 files changed

+31
-10
lines changed

11 files changed

+31
-10
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ aiosqlite
44
[![Generated by attribution][attribution-badge]][attribution-url]
55

66

7+
v0.21.0
8+
-------
9+
10+
Maintenance release
11+
12+
- Fix: close connection correctly when BaseException raised in connection (#317)
13+
- Metadata improvements
14+
- Tested and supported on Python 3.13
15+
- Drop support for Python 3.8
16+
- Drop testing on PyPy
17+
18+
```text
19+
$ git shortlog -s v0.20.0...v0.21.0
20+
6 Amethyst Reese
21+
1 Gabriel
22+
1 Stanley Kudrow
23+
11 dependabot[bot]
24+
```
25+
26+
727
v0.20.0
828
-------
929

aiosqlite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
"""asyncio bridge to the standard sqlite3 module"""

aiosqlite/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
Do not edit manually. Get more info at https://attribution.omnilib.dev
55
"""
66

7-
__version__ = "0.20.0"
7+
__version__ = "0.21.0"

aiosqlite/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2018
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44

aiosqlite/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
"""

aiosqlite/cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
import sqlite3

aiosqlite/tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
from .smoke import SmokeTest

aiosqlite/tests/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
import unittest

aiosqlite/tests/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
import logging

aiosqlite/tests/perf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Amethyst Reese
1+
# Copyright Amethyst Reese
22
# Licensed under the MIT license
33

44
"""

0 commit comments

Comments
 (0)