Skip to content

Bump version: 1.0.2 → 1.1.0 #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = 1.0.2
current_version = 1.1.0
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 @@ -17,7 +17,7 @@ encryption with TLS.
Quickstart
==========

The latest version of the library is 1.0.2.
The latest version of the library is 1.1.0.

::

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 = '2022'
author = 'QuestDB'
copyright = '{0}, {1}'.format(year, author)
version = release = '1.0.2'
version = release = '1.1.0'

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.7"
version = "1.0.2"
version = "1.1.0"
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='1.0.2',
version='1.1.0',
platforms=['any'],
python_requires='>=3.7',
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__ = '1.0.2'
__version__ = '1.1.0'
2 changes: 1 addition & 1 deletion src/questdb/ingress.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,7 @@ cdef class Buffer:


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


Expand Down