Skip to content

Commit d2873e7

Browse files
committed
asyncpg v0.18.0
1 parent 1d650ed commit d2873e7

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.ci/build-manylinux-wheels.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e -x
55
# Compile wheels
66
PYTHON="/opt/python/${PYTHON_VERSION}/bin/python"
77
PIP="/opt/python/${PYTHON_VERSION}/bin/pip"
8-
${PIP} install --upgrade setuptools pip wheel
8+
${PIP} install --upgrade setuptools pip wheel~=0.31.1
99
cd /io
1010
make clean
1111
${PYTHON} setup.py bdist_wheel

asyncpg/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
# snapshots will automatically include the git revision
3232
# in __version__, for example: '0.16.0.dev0+ge06ad03'
3333

34-
__version__ = '0.18.0.dev0'
34+
__version__ = '0.18.0'

asyncpg/connection.py

+4
Original file line numberDiff line numberDiff line change
@@ -1653,6 +1653,10 @@ async def connect(dsn=None, *,
16531653
Added ``passfile`` parameter
16541654
(and support for password files in general).
16551655
1656+
.. versionadded:: 0.18.0
1657+
Added ability to specify multiple hosts in the *dsn*
1658+
and *host* arguments.
1659+
16561660
.. _SSLContext: https://docs.python.org/3/library/ssl.html#ssl.SSLContext
16571661
.. _create_default_context:
16581662
https://docs.python.org/3/library/ssl.html#ssl.create_default_context

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from setuptools.command import sdist as setuptools_sdist
2828

2929

30-
CYTHON_DEPENDENCY = 'Cython==0.28.5'
30+
CYTHON_DEPENDENCY = 'Cython==0.29'
3131

3232
# Minimal dependencies required to test asyncpg.
3333
TEST_DEPENDENCIES = [

0 commit comments

Comments
 (0)