Skip to content

Commit eabfdd5

Browse files
authored
Bump version: 1.0.1 → 1.0.2 (#27)
1 parent 550ac89 commit eabfdd5

File tree

8 files changed

+16
-7
lines changed

8 files changed

+16
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.1
2+
current_version = 1.0.2
33
commit = True
44
tag = False
55

CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
Changelog
33
=========
44

5+
1.0.2 (2022-10-31)
6+
------------------
7+
8+
* Support for Python 3.11.
9+
* Updated to version 2.1.1 of the ``c-questdb-client`` library:
10+
11+
* Setting ``SO_REUSEADDR`` on outbound socket. This is helpful to users with large number of connections who previously ran out of outbound network ports.
12+
13+
514
1.0.1 (2022-08-16)
615
------------------
716

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ encryption with TLS.
1717
Quickstart
1818
==========
1919

20-
The latest version of the library is 1.0.1.
20+
The latest version of the library is 1.0.2.
2121

2222
::
2323

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
year = '2022'
2121
author = 'QuestDB'
2222
copyright = '{0}, {1}'.format(year, author)
23-
version = release = '1.0.1'
23+
version = release = '1.0.2'
2424

2525
github_repo_url = 'https://github.com/questdb/py-questdb-client'
2626

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See: https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
33
name = "questdb"
44
requires-python = ">=3.7"
5-
version = "1.0.1"
5+
version = "1.0.2"
66
description = "QuestDB client library for Python"
77
readme = "README.rst"
88
classifiers = [

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def readme():
120120

121121
setup(
122122
name='questdb',
123-
version='1.0.1',
123+
version='1.0.2',
124124
platforms=['any'],
125125
python_requires='>=3.7',
126126
install_requires=[],

src/questdb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.1'
1+
__version__ = '1.0.2'

src/questdb/ingress.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,7 @@ cdef class Buffer:
942942

943943

944944
_FLUSH_FMT = ('{} - See https://py-questdb-client.readthedocs.io/en/'
945-
'v1.0.1'
945+
'v1.0.2'
946946
'/troubleshooting.html#inspecting-and-debugging-errors#flush-failed')
947947

948948

0 commit comments

Comments
 (0)