Skip to content

Commit 2fc265a

Browse files
Andrey Golovanovclaude
andcommitted
v0.7.2 per changelog
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a2faecf commit 2fc265a

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

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.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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "netgraph-core"
7-
version = "0.7.1"
7+
version = "0.7.2"
88
description = "C++ implementation of graph algorithms for network flow analysis and traffic engineering with Python bindings"
99
readme = "README.md"
1010
requires-python = ">=3.11"

src/cpu_backend.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
#include "netgraph/core/max_flow.hpp"
77
#include "netgraph/core/shortest_paths.hpp"
88

9+
#include <stdexcept>
10+
911
namespace netgraph::core {
1012

1113
namespace {

src/k_shortest_paths.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <memory>
1414
#include <optional>
1515
#include <queue>
16+
#include <stdexcept>
1617
#include <unordered_set>
1718
#include <utility>
1819
#include <vector>

0 commit comments

Comments
 (0)