Skip to content

Commit 79acb09

Browse files
authored
Merge pull request #66 from Phala-Network/rel-0.3.5
Rel 0.3.5
2 parents e601409 + 532ca4b commit 79acb09

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dcap-qvl"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
edition = "2021"
55
license = "MIT"
66
description = "This crate implements the quote verification logic for DCAP (Data Center Attestation Primitives) in pure Rust."

python-bindings/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ python-source = "python"
3939
module-name = "dcap_qvl._dcap_qvl"
4040
manifest-path = "../Cargo.toml"
4141

42-
[tool.uv]
43-
dev-dependencies = [
42+
[dependency-groups]
43+
dev = [
4444
"pytest>=7.0",
4545
"pytest-asyncio>=0.21.0",
4646
"maturin>=1.0,<2.0",

python-bindings/python/dcap_qvl/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"""
1717

1818
import time
19+
from importlib.metadata import version
1920
from typing import Optional
2021

2122
from ._dcap_qvl import (
@@ -126,4 +127,4 @@ async def get_collateral_and_verify(
126127
"PCS_URL",
127128
]
128129

129-
__version__ = "0.3.2"
130+
__version__ = version("dcap-qvl")

python-bindings/uv.lock

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

0 commit comments

Comments
 (0)