Skip to content

Commit

Permalink
Bump version: 2.0.1 → 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amunra committed Apr 11, 2024
1 parent 8194bd8 commit 4ea8800
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.1
current_version = 2.0.2
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and full-connection encryption with
Quickstart
==========

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

::

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
year = '2024'
author = 'QuestDB'
copyright = '{0}, {1}'.format(year, author)
version = release = '2.0.1'
version = release = '2.0.2'

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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See: https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
name = "questdb"
requires-python = ">=3.8"
version = "2.0.1"
version = "2.0.2"
description = "QuestDB client library for Python"
readme = "README.rst"
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def readme():

setup(
name='questdb',
version='2.0.1',
version='2.0.2',
platforms=['any'],
python_requires='>=3.8',
install_requires=[],
Expand Down
2 changes: 1 addition & 1 deletion src/questdb/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.1'
__version__ = '2.0.2'
2 changes: 1 addition & 1 deletion src/questdb/ingress.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ import os
# This value is automatically updated by the `bump2version` tool.
# If you need to update it, also update the search definition in
# .bumpversion.cfg.
VERSION = '2.0.1'
VERSION = '2.0.2'


cdef bint _has_gil(PyThreadState** gs):
Expand Down

0 comments on commit 4ea8800

Please sign in to comment.