Skip to content

Bump version: 2.0.3 → 2.0.4 #101

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 9 commits into from
Apr 2, 2025
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 = 2.0.3
current_version = 2.0.4
commit = True
tag = False

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Changelog
=========

2.0.4 (31-03-25)

Building for Python 3.13.

2.0.3 (2024-06-06)
------------------

Expand Down
2 changes: 1 addition & 1 deletion c-questdb-client
2 changes: 1 addition & 1 deletion ci/cibuildwheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ stages:
inputs: {pathtoPublish: 'wheelhouse'}

- job: macos_x64
pool: {vmImage: 'macOS-12'}
pool: {vmImage: 'macOS-13'}
timeoutInMinutes: 90
steps:
- task: UsePythonVersion@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 = '2024'
author = 'QuestDB'
copyright = '{0}, {1}'.format(year, author)
version = release = '2.0.3'
version = release = '2.0.4'

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

Expand Down
2 changes: 1 addition & 1 deletion proj
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
#!/bin/bash
python3 proj.py "$@"
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.3"
version = "2.0.4"
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.3',
version='2.0.4',
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.3'
__version__ = '2.0.4'
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.3'
VERSION = '2.0.4'


cdef bint _has_gil(PyThreadState** gs):
Expand Down
2 changes: 1 addition & 1 deletion test/system_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import questdb.ingress as qi


QUESTDB_VERSION = '8.1.0'
QUESTDB_VERSION = '8.2.3'
QUESTDB_PLAIN_INSTALL_PATH = None
QUESTDB_AUTH_INSTALL_PATH = None

Expand Down