Skip to content

Commit 722f372

Browse files
committed
Bump to v0.0.29
1 parent abe9afc commit 722f372

13 files changed

Lines changed: 20 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project follows versions of format `{year}.{month}.{patch_number}`.
77

88
## [Unreleased]
99

10+
## [0.0.29] - 2026-06-25
11+
12+
### Fixed
13+
14+
- `ci`: Fixed failing python test step in CI.
15+
1016
## [0.0.28] - 2026-06-25
1117

1218
### Fixed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: all build build-dashboard test lint lint-go lint-py lint-js lint-dashboard lint-go-client lint-py-client format format-go format-py format-js format-dashboard format-go-client format-py-client package package-driver package-js package-py package-go clean venv-check test-e2e-dashboard
22

3-
VERSION ?= 0.0.28
3+
VERSION ?= 0.0.29
44
UV := $(shell command -v uv 2> /dev/null || echo "$$HOME/.local/bin/uv")
55

66
all: build

qpi-client/js/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

qpi-client/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qpi-client",
3-
"version": "0.0.28",
3+
"version": "0.0.29",
44
"description": "JavaScript/TypeScript client SDK for the QPI quantum computing platform",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

qpi-client/py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "qpi-client"
7-
version = "0.0.28"
7+
version = "0.0.29"
88
description = "Python client SDK for the QPI quantum computing platform"
99
readme = "README.md"
1010
license = {text = "MIT"}

qpi-client/py/qpi_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
try:
3131
__version__ = importlib.metadata.version("qpi-client")
3232
except importlib.metadata.PackageNotFoundError:
33-
__version__ = "0.0.28"
33+
__version__ = "0.0.29"
3434

3535
from qpi_client.client import QPIClient
3636
from qpi_client.provider import QPIBackend, QPIJob

qpi-driver/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "qpi-driver"
7-
version = "0.0.28"
7+
version = "0.0.29"
88
description = "Quantum Processing Interface (QPI) QPU Driver"
99
readme = "README.md"
1010
requires-python = ">=3.12,<3.13"

qpi-driver/qpi_driver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
try:
44
__version__ = importlib.metadata.version("qpi-driver")
55
except importlib.metadata.PackageNotFoundError:
6-
__version__ = "0.0.28"
6+
__version__ = "0.0.29"
77

88
from qpi_driver.driver import run_driver
99
from qpi_driver.executors.base import Executor

qpi-driver/qpi_driver/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def _get_version() -> str:
153153
try:
154154
return importlib.metadata.version("qpi-driver")
155155
except importlib.metadata.PackageNotFoundError:
156-
return "0.0.28"
156+
return "0.0.29"
157157

158158
def _banner():
159159
"""Renders the banner at the top of the CLI"""

qpi-driver/tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_cli_version():
2323
try:
2424
expected_version = importlib.metadata.version("qpi-driver")
2525
except importlib.metadata.PackageNotFoundError:
26-
expected_version = "0.0.28"
26+
expected_version = "0.0.29"
2727
assert expected_version in result.stdout
2828

2929

0 commit comments

Comments
 (0)