File tree Expand file tree Collapse file tree 4 files changed +10
-1
lines changed
Expand file tree Collapse file tree 4 files changed +10
-1
lines changed 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.7.2] - 2026-03-26
9+
10+ ### Fixed
11+
12+ - Added missing ` <stdexcept> ` include for MSVC compatibility
13+
814## [ 0.7.1] - 2026-03-26
915
1016### Added
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.7.1 "
7+ version = " 0.7.2 "
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 66#include " netgraph/core/max_flow.hpp"
77#include " netgraph/core/shortest_paths.hpp"
88
9+ #include < stdexcept>
10+
911namespace netgraph ::core {
1012
1113namespace {
Original file line number Diff line number Diff line change 1313#include < memory>
1414#include < optional>
1515#include < queue>
16+ #include < stdexcept>
1617#include < unordered_set>
1718#include < utility>
1819#include < vector>
You can’t perform that action at this time.
0 commit comments