Skip to content

Commit 51dfdf3

Browse files
authored
Bump version: 2.0.3 → 2.0.4 (#101)
1 parent 4d78220 commit 51dfdf3

11 files changed

+14
-10
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.3
2+
current_version = 2.0.4
33
commit = True
44
tag = False
55

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Changelog
44
=========
55

6+
2.0.4 (31-03-25)
7+
8+
Building for Python 3.13.
9+
610
2.0.3 (2024-06-06)
711
------------------
812

c-questdb-client

ci/cibuildwheel.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ stages:
144144
inputs: {pathtoPublish: 'wheelhouse'}
145145

146146
- job: macos_x64
147-
pool: {vmImage: 'macOS-12'}
147+
pool: {vmImage: 'macOS-13'}
148148
timeoutInMinutes: 90
149149
steps:
150150
- task: UsePythonVersion@0

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.3'
23+
version = release = '2.0.4'
2424

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

proj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
python3 proj.py "$@"

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.3"
5+
version = "2.0.4"
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.3',
168+
version='2.0.4',
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.3'
1+
__version__ = '2.0.4'

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.3'
89+
VERSION = '2.0.4'
9090

9191

9292
cdef bint _has_gil(PyThreadState** gs):

test/system_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import questdb.ingress as qi
2727

2828

29-
QUESTDB_VERSION = '8.1.0'
29+
QUESTDB_VERSION = '8.2.3'
3030
QUESTDB_PLAIN_INSTALL_PATH = None
3131
QUESTDB_AUTH_INSTALL_PATH = None
3232

0 commit comments

Comments
 (0)