Skip to content

Commit a483cc4

Browse files
committed
Updated version to 0.1.0 for first public release
1 parent e08f2ae commit a483cc4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build"
77

88
[project]
99
name = "nwqec"
10-
version = "1.0.0"
10+
version = "0.1.0"
1111
description = "NWQEC: C++ quantum circuit transpiler with Python bindings"
1212
readme = "README.md"
1313
requires-python = ">=3.8"

python/nwqec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
try:
66
__version__ = _metadata.version("nwqec")
77
except _metadata.PackageNotFoundError: # pragma: no cover - happens in local dev
8-
__version__ = "1.0.0-dev"
8+
__version__ = "0.1.0-dev"
99

1010
from ._core import * # type: ignore[F401,F403]
1111

0 commit comments

Comments
 (0)