Skip to content

Commit 3042396

Browse files
committed
chore: prepare new release(s)
1 parent c599fe9 commit 3042396

File tree

32 files changed

+1097
-436
lines changed

32 files changed

+1097
-436
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
tempfile = '3.3.0'
2525
thiserror = '1.0.32'
2626
tonic-build = '0.12.3'
27-
tonic-health = '0.12.1'
27+
tonic-health = '0.12.3'
28+
tonic-web = '0.12.3'
2829
tracing-opentelemetry = '0.25.0'
2930
tracing-subscriber = '0.3.18'
3031
urlpattern = '0.2.0'
@@ -72,12 +73,9 @@
7273
version = '0.1.15'
7374

7475
[workspace.dependencies.tonic]
75-
features = ['tls-roots']
76+
features = ['tls-roots', 'tls-native-roots']
7677
version = '0.12.3'
7778

78-
[workspace.dependencies.tonic-web]
79-
version = '0.12.1'
80-
8179
[workspace.dependencies.tower]
8280
features = ['retry']
8381
version = '0.4'
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
qcs_api_client_common.configuration
21
qcs_api_client_common.qcs_api_client_common

qcs-api-client-common/CHANGELOG-py.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.11.6 (2025-01-22)
2+
3+
### Features
4+
5+
#### Access tokens are written back to QCS configuration
6+
7+
### Fixes
8+
9+
#### respect env var for api_url
10+
111
## 0.11.5 (2024-11-20)
212

313
### Fixes

qcs-api-client-common/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.11.6 (2025-01-22)
2+
3+
### Features
4+
5+
#### Access tokens are written back to QCS configuration
6+
7+
### Fixes
8+
9+
#### respect env var for api_url
10+
111
## 0.11.5 (2024-11-20)
212

313
### Fixes

qcs-api-client-common/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "qcs-api-client-common"
3-
version = "0.11.5"
3+
version = "0.11.6"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -27,9 +27,9 @@ tracing-config = ["tracing"]
2727
python = ["dep:pyo3", "dep:pyo3-asyncio", "dep:paste", "dep:rigetti-pyo3", "tokio/macros", "pyo3-build-config"]
2828

2929
[dependencies]
30+
async-tempfile = { version = "0.6.0", features = ["uuid"] }
3031
async-trait = "0.1"
3132
backoff = { workspace = true }
32-
base64 = "0.22.1"
3333
derive_builder = "0.20.0"
3434
figment = { version = "0.10.18", features = ["env", "toml"] }
3535
futures = "0.3.26"
@@ -44,15 +44,15 @@ rigetti-pyo3 = { version = "0.3.6", optional = true }
4444
serde = { workspace = true, features = ["derive"] }
4545
shellexpand = "3.1.0"
4646
thiserror = { workspace = true }
47-
time = { version = "0.3.34", features = ["parsing"] }
48-
tokio = { workspace = true, features = ["sync"] }
49-
toml = "0.8.14"
47+
time = { version = "0.3.34", features = ["macros", "parsing", "serde"] }
48+
tokio = { workspace = true, features = ["rt-multi-thread", "sync", "fs"] }
49+
toml = { version = "0.8.19", features = ["preserve_order"] }
50+
toml_edit = "0.22.22"
5051
tracing = { workspace = true, optional = true }
5152
url = { workspace = true, optional = true }
5253
urlpattern = { workspace = true, optional = true }
5354

5455
[dev-dependencies]
55-
chrono = "0.4.38"
5656
figment = { version = "0.10.18", features = ["env", "toml", "test"] }
5757
httpmock = "0.8.0-alpha.1"
5858
rstest = { workspace = true }

qcs-api-client-common/Makefile.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,13 @@ script = [
8585
'''
8686
]
8787

88+
[tasks.ruff-check]
89+
dependencies = ["install-uv"]
90+
command = "ruff"
91+
args = ["check"]
92+
8893
[tasks.dev-flow]
89-
dependencies = ["dev-test-flow", "pytest", "stubtest"]
94+
dependencies = ["dev-test-flow", "pytest", "stubtest", "ruff-check"]
9095

9196
[tasks.default]
9297
alias = "dev-flow"

qcs-api-client-common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "qcs-api-client-common"
3-
version = "0.11.5"
3+
version = "0.11.6"
44
description = "Contains core QCS client functionality and middleware implementations."
55
readme = "README-py.md"
66
license = { text = "Apache-2.0" }
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
""".. include:: ../README-py.md""" # noqa: D415
1+
""".. include:: ../README-py.md""" # noqa: D415
2+
23
from .qcs_api_client_common import configuration
34

45
__all__ = ["configuration"]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from . import configuration
2+
3+
__all__ = ["configuration"]

0 commit comments

Comments
 (0)