File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 0.3.4] - 2026-02-02
9+
10+ ### Changed
11+
12+ - ** Build** : Simplified version handling.
13+
814## [ 0.3.3] - 2026-02-02
915
1016### Fixed
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44
55[project ]
66name = " netgraph-core"
7- version = " 0.3.3 "
7+ version = " 0.3.4 "
88description = " C++ implementation of graph algorithms for network flow analysis and traffic engineering with Python bindings"
99readme = " README.md"
1010requires-python = " >=3.11"
Original file line number Diff line number Diff line change 77
88# pyright: reportMissingImports=false
99
10+ from importlib .metadata import version
11+
1012from _netgraph_core import (
1113 Algorithms ,
1214 Backend ,
2931 profiling_reset ,
3032)
3133
32- from . _version import __version__
34+ __version__ = version ( "netgraph-core" )
3335
3436# Provide richer type information for editors/type-checkers without affecting runtime.
3537try : # pragma: no cover - typing-only import
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments