Skip to content

Commit 70a66d5

Browse files
committed
Bump to v0.0.13
1 parent ffbcfee commit 70a66d5

16 files changed

Lines changed: 19 additions & 17 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.0.13] - 2026-06-21
11+
1012
### Fixed
1113

1214
- Fixed broken links and typos in docs website.

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.12
3+
VERSION ?= 0.0.13
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.12",
3+
"version": "0.0.13",
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.12"
7+
version = "0.0.13"
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.12"
33+
__version__ = "0.0.13"
3434

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

qpi-client/py/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.12"
7+
version = "0.0.13"
88
description = "Quantum Processing Interface (QPI) Hardware 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.12"
6+
__version__ = "0.0.13"
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.12"
156+
return "0.0.13"
157157

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

0 commit comments

Comments
 (0)