Skip to content
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ This project uses [towncrier](https://towncrier.readthedocs.io/) and the changes

<!-- towncrier release notes start -->

## [0.1.4](https://github.com/devqubit-labs/devqubit/releases/tag/v0.1.4) - 2026-01-11

#### Fixed
- Fix top-level imports from devqubit_ui by exposing run_server and create_app. ([#9](https://github.com/devqubit-labs/devqubit/pull/9))

## [0.1.3](https://github.com/devqubit-labs/devqubit/releases/tag/v0.1.3) - 2026-01-10

#### Fixed
Expand Down
4 changes: 2 additions & 2 deletions packages/devqubit-braket/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "devqubit-braket"
version = "0.1.3"
version = "0.1.4"
description = "devqubit adapter for Braket"
readme = "README.md"
license = "Apache-2.0"
Expand All @@ -26,7 +26,7 @@ classifiers = [

dependencies = [
"amazon-braket-sdk>=1.107,<2",
"devqubit-engine>=0.1.3,<0.2.0",
"devqubit-engine>=0.1.4,<0.2.0",
]

[project.entry-points."devqubit.adapters"]
Expand Down
4 changes: 2 additions & 2 deletions packages/devqubit-cirq/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "devqubit-cirq"
version = "0.1.3"
version = "0.1.4"
description = "devqubit adapter for Cirq"
readme = "README.md"
license = "Apache-2.0"
Expand All @@ -26,7 +26,7 @@ classifiers = [

dependencies = [
"cirq>=1.6,<2",
"devqubit-engine>=0.1.3,<0.2.0",
"devqubit-engine>=0.1.4,<0.2.0",
"ply>=3.11",
]

Expand Down
2 changes: 1 addition & 1 deletion packages/devqubit-engine/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "devqubit-engine"
version = "0.1.3"
version = "0.1.4"
description = "Internal core runtime for devqubit"
readme = "README.md"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/devqubit-pennylane/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "devqubit-pennylane"
version = "0.1.3"
version = "0.1.4"
description = "devqubit adapter for Pennylane"
readme = "README.md"
license = "Apache-2.0"
Expand All @@ -25,7 +25,7 @@ classifiers = [
]

dependencies = [
"devqubit-engine>=0.1.3,<0.2.0",
"devqubit-engine>=0.1.4,<0.2.0",
"pennylane>=0.43,<0.44",
]

Expand Down
6 changes: 3 additions & 3 deletions packages/devqubit-qiskit-runtime/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ build-backend = "hatchling.build"

[project]
name = "devqubit-qiskit-runtime"
version = "0.1.3"
version = "0.1.4"
description = "devqubit adapter for Qiskit Runtime"
readme = "README.md"
requires-python = ">=3.11,<3.14"
dependencies = [
"devqubit-engine>=0.1.3,<0.2.0",
"devqubit-qiskit>=0.1.3,<0.2.0",
"devqubit-engine>=0.1.4,<0.2.0",
"devqubit-qiskit>=0.1.4,<0.2.0",
"qiskit-ibm-runtime>=0.44,<0.45",
]

Expand Down
4 changes: 2 additions & 2 deletions packages/devqubit-qiskit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "devqubit-qiskit"
version = "0.1.3"
version = "0.1.4"
description = "devqubit adapter for Qiskit"
readme = "README.md"
license = "Apache-2.0"
Expand All @@ -25,7 +25,7 @@ classifiers = [
]

dependencies = [
"devqubit-engine>=0.1.3,<0.2.0",
"devqubit-engine>=0.1.4,<0.2.0",
"qiskit>=2.2,<3",
"qiskit-aer>=0.17,<0.18",
"qiskit-qasm3-import>=0.6,<0.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/devqubit-ui/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "devqubit-ui"
version = "0.1.3"
version = "0.1.4"
description = "Web interface for devqubit experiment tracking"
readme = "README.md"
license = "Apache-2.0"
Expand All @@ -27,7 +27,7 @@ classifiers = [
]

dependencies = [
"devqubit-engine>=0.1.3,<0.2.0",
"devqubit-engine>=0.1.4,<0.2.0",
"fastapi>=0.128.0",
"httpx>=0.28.1",
"jinja2>=3.1.6",
Expand Down
11 changes: 10 additions & 1 deletion packages/devqubit-ui/src/devqubit_ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,13 @@
API or the JSON endpoints at ``/api/*``.
"""

__version__ = "0.1.3"
__version__ = "0.1.4"


from devqubit_ui.app import create_app, run_server


__all__ = [
"run_server",
"create_app",
]
2 changes: 1 addition & 1 deletion packages/devqubit-ui/src/devqubit_ui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def create_app(
app = FastAPI(
title="devqubit UI",
description="Web interface for devqubit experiment tracking",
version="0.1.3",
version="0.1.4",
lifespan=lifespan,
)

Expand Down
2 changes: 1 addition & 1 deletion packages/devqubit-ui/src/devqubit_ui/routers/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async def get_capabilities() -> dict[str, Any]:
"""
return {
"mode": "local",
"version": "0.1.3",
"version": "0.1.4",
"features": {
"auth": False,
"workspaces": False,
Expand Down
Loading