Skip to content

Commit 85eb9d9

Browse files
committed
v0.17.2 - simplified version management
1 parent 352a4c3 commit 85eb9d9

4 files changed

Lines changed: 11 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and 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

ngraph/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,11 @@
3030

3131
from __future__ import annotations
3232

33+
from importlib.metadata import version
34+
3335
from ngraph import cli, logging
34-
from ngraph._version import __version__
36+
37+
__version__ = version("ngraph")
3538
from ngraph.analysis import AnalysisContext, analyze
3639
from ngraph.analysis.failure_manager import FailureManager
3740
from ngraph.explorer import NetworkExplorer

ngraph/_version.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
# ---------------------------------------------------------------------
66
[project]
77
name = "ngraph"
8-
version = "0.17.1"
8+
version = "0.17.2"
99
description = "A tool and a library for network modeling and analysis."
1010
readme = "README.md"
1111
authors = [{ name = "Andrey Golovanov" }]

0 commit comments

Comments
 (0)