Skip to content

Commit 0ef0aa9

Browse files
authored
🔖 Prepare release of v0.2.0 (#254)
## Description This PR prepares the release of v0.2.1. ## Checklist: - [x] The pull request only contains commits that are focused and relevant to this change. - [x] ~I have added appropriate tests that cover the new/changed functionality.~ - [x] ~I have updated the documentation to reflect these changes.~ - [x] The changes follow the project's style guidelines and introduce no new warnings. - [x] The changes are fully tested and pass the CI checks. - [x] I have reviewed my own code changes. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated package versions across multiple components. * **Documentation** * Added PyPI badge and OS compatibility information to project documentation. * Expanded project metadata to specify Python 3.10–3.14 support and comprehensive OS coverage. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent d1bcbbd commit 0ef0aa9

File tree

13 files changed

+47
-39
lines changed

13 files changed

+47
-39
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ license = "LGPL-3.0-or-later WITH LGPL-3.0-linking-exception"
1717
repository = "https://github.com/munich-quantum-toolkit/naviz"
1818

1919
[workspace.dependencies]
20-
naviz-animator = {path = "animator", version = "0.4.1"}
21-
naviz-gui = {path = "gui", version = "0.6.1"}
22-
naviz-import = {path = "import", version = "0.1.1"}
23-
naviz-parser = {path = "parser", version = "0.4.1"}
24-
naviz-bindings = {path = "bindings", version = "0.1.1"}
25-
naviz-renderer = {path = "renderer", version = "0.5.1"}
26-
naviz-repository = {path = "repository", version = "0.1.1"}
27-
naviz-state = {path = "state", version = "0.5.0"}
28-
naviz-video = {path = "video", version = "0.3.1"}
20+
naviz-animator = {path = "animator", version = "0.5.0"}
21+
naviz-gui = {path = "gui", version = "0.7.0"}
22+
naviz-import = {path = "import", version = "0.2.0"}
23+
naviz-parser = {path = "parser", version = "0.5.0"}
24+
naviz-bindings = {path = "bindings", version = "0.2.0"}
25+
naviz-renderer = {path = "renderer", version = "0.6.0"}
26+
naviz-repository = {path = "repository", version = "0.2.0"}
27+
naviz-state = {path = "state", version = "0.6.0"}
28+
naviz-video = {path = "video", version = "0.4.0"}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![PyPI](https://img.shields.io/pypi/v/mqt.naviz?logo=pypi&style=flat-square)](https://pypi.org/project/mqt.naviz/)
2+
![OS](https://img.shields.io/badge/os-linux%20%7C%20macos%20%7C%20windows-blue?style=flat-square)
13
[![Documentation](https://img.shields.io/readthedocs/mqt-naviz?logo=readthedocs&style=flat-square)](https://mqt.readthedocs.io/projects/naviz)
24

35
<p align="center">

animator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["naviz", "animation"]
77
license.workspace = true
88
name = "naviz-animator"
99
repository.workspace = true
10-
version = "0.4.1"
10+
version = "0.5.0"
1111

1212
[dependencies]
1313
fraction = "0.15.3"

bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["naviz", "python"]
77
license = "MIT"
88
name = "naviz-bindings"
99
repository.workspace = true
10-
version = "0.1.1"
10+
version = "0.2.0"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313
[lib]

gui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["naviz", "gui"]
77
license = "AGPL-3.0-or-later"
88
name = "naviz-gui"
99
repository.workspace = true
10-
version = "0.6.1"
10+
version = "0.7.0"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true

import/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["naviz", "import"]
77
license.workspace = true
88
name = "naviz-import"
99
repository.workspace = true
10-
version = "0.1.1"
10+
version = "0.2.0"
1111

1212
[dependencies]
1313
fraction = "0.15.3"

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["naviz", "parser"]
77
license.workspace = true
88
name = "naviz-parser"
99
repository.workspace = true
10-
version = "0.4.1"
10+
version = "0.5.0"
1111

1212
[dependencies]
1313
fraction = "0.15.3"

pyproject.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,21 @@ license = "MIT"
2020
license-files = ["LICENSE.md"]
2121
requires-python = ">=3.10"
2222
classifiers = [
23-
"Programming Language :: Rust",
23+
"Development Status :: 4 - Beta",
24+
"Intended Audience :: Science/Research",
25+
"Natural Language :: English",
26+
"Operating System :: MacOS",
27+
"Operating System :: Microsoft :: Windows",
28+
"Operating System :: POSIX :: Linux",
2429
"Programming Language :: Python",
25-
"Programming Language :: Python :: 3",
2630
"Programming Language :: Python :: 3 :: Only",
2731
"Programming Language :: Python :: 3.10",
2832
"Programming Language :: Python :: 3.11",
2933
"Programming Language :: Python :: 3.12",
3034
"Programming Language :: Python :: 3.13",
3135
"Programming Language :: Python :: 3.14",
36+
"Programming Language :: Rust",
37+
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
3238
]
3339
dynamic = ["version"]
3440

renderer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["naviz", "renderer"]
77
license.workspace = true
88
name = "naviz-renderer"
99
repository.workspace = true
10-
version = "0.5.1"
10+
version = "0.6.0"
1111

1212
[dependencies]
1313
bytemuck = "1.18.0"

0 commit comments

Comments
 (0)