Skip to content

Commit 38c55f5

Browse files
committed
asyncpg v0.24.0
Changes ------- * Drop support for Python 3.5 (#777) (by @and-semakin in da58cd2 for #777) * Add support for Python 3.10 (#795) (by @elprans in abf5569 for #795) * Add support for asynchronous iterables to copy_records_to_table() (#713) (by @elprans in 1d33ff6 for #713) * Add support for coroutine functions as listener callbacks (#802) (by @elprans in 41da093 for #802) * Add support for sslcert, sslkey and sslrootcert parameters to DSN (#768) (by @jdobes and @elprans in c674e86 for #768) * Add copy_ wrappers to Pool (#661) (by @elprans in a6b0f28 for #661) * Add issubset and issuperset methods to the Range type (#563) (by @kdorsel in de07d0a for #563) Fixes ----- * Break connection internal circular reference (#774) (by @fantix in d08a9b8 for #774) * Make Server Version Extraction More Flexible (#778) (by @Natrinicle in d076169 for #778)
1 parent 5797936 commit 38c55f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
runs-on: ${{ matrix.os }}
7474
strategy:
7575
matrix:
76-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0.rc.1]
76+
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-rc.1]
7777
os: [ubuntu-latest, macos-latest, windows-latest]
7878
arch: [x86_64]
7979
exclude:

asyncpg/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
# supported platforms, publish the packages on PyPI, merge the PR
1111
# to the target branch, create a Git tag pointing to the commit.
1212

13-
__version__ = '0.24.0.dev0'
13+
__version__ = '0.24.0'

0 commit comments

Comments
 (0)