Release 1.0.0

This commit is contained in:
2026-07-07 16:44:10 +02:00
parent 451557299e
commit 13828a7bfe
4 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "dpg-gauges"
version = "0.1.0b1"
version = "1.0.0"
description = "Dear PyGui gauge widgets for dashboards and telemetry displays"
readme = "README.md"
authors = [

View File

@@ -35,7 +35,7 @@ from .types import (
ThresholdBand,
)
__version__ = "0.1.0b1"
__version__ = "1.0.0"
__all__ = [
"configure",

View File

@@ -30,7 +30,7 @@ def dpg_context() -> Generator[None]:
def test_public_exports_and_version() -> None:
assert dpgg.__version__ == "0.1.0b1"
assert dpgg.__version__ == "1.0.0"
for name in dpgg.__all__:
assert hasattr(dpgg, name)

2
uv.lock generated
View File

@@ -36,7 +36,7 @@ wheels = [
[[package]]
name = "dpg-gauges"
version = "0.1.0b1"
version = "1.0.0"
source = { editable = "." }
dependencies = [
{ name = "dearpygui" },