Skip to content

Commit 4ea8800

Browse files
committed
Bump version: 2.0.1 → 2.0.2
1 parent 8194bd8 commit 4ea8800

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.bumpversion.cfg

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

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ and full-connection encryption with
1818
Quickstart
1919
==========
2020

21-
The latest version of the library is 2.0.1 (`changelog <https://py-questdb-client.readthedocs.io/en/latest/changelog.html>`_).
21+
The latest version of the library is 2.0.2 (`changelog <https://py-questdb-client.readthedocs.io/en/latest/changelog.html>`_).
2222

2323
::
2424

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
year = '2024'
2121
author = 'QuestDB'
2222
copyright = '{0}, {1}'.format(year, author)
23-
version = release = '2.0.1'
23+
version = release = '2.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.8"
5-
version = "2.0.1"
5+
version = "2.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
@@ -165,7 +165,7 @@ def readme():
165165

166166
setup(
167167
name='questdb',
168-
version='2.0.1',
168+
version='2.0.2',
169169
platforms=['any'],
170170
python_requires='>=3.8',
171171
install_requires=[],

src/questdb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.0.1'
1+
__version__ = '2.0.2'

src/questdb/ingress.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ import os
8686
# This value is automatically updated by the `bump2version` tool.
8787
# If you need to update it, also update the search definition in
8888
# .bumpversion.cfg.
89-
VERSION = '2.0.1'
89+
VERSION = '2.0.2'
9090

9191

9292
cdef bint _has_gil(PyThreadState** gs):

0 commit comments

Comments
 (0)