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.17.2] - 2026-02-02
9+
10+ ### Changed
11+
12+ - Version management simplified
13+
814## [ 0.17.1] - 2026-01-16
915
1016### Fixed
Original file line number Diff line number Diff line change 3030
3131from __future__ import annotations
3232
33+ from importlib .metadata import version
34+
3335from ngraph import cli , logging
34- from ngraph ._version import __version__
36+
37+ __version__ = version ("ngraph" )
3538from ngraph .analysis import AnalysisContext , analyze
3639from ngraph .analysis .failure_manager import FailureManager
3740from ngraph .explorer import NetworkExplorer
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55# ---------------------------------------------------------------------
66[project ]
77name = " ngraph"
8- version = " 0.17.1 "
8+ version = " 0.17.2 "
99description = " A tool and a library for network modeling and analysis."
1010readme = " README.md"
1111authors = [{ name = " Andrey Golovanov" }]
You can’t perform that action at this time.
0 commit comments