From 648ed49881cfd842f36722db6a24b340256a977f Mon Sep 17 00:00:00 2001 From: Matthew Fishman Date: Thu, 25 Jun 2026 09:49:33 -0400 Subject: [PATCH] Allow `NamedGraphs` v0.12 Widen the `NamedGraphs` compat to allow v0.12 (https://github.com/ITensor/NamedGraphs.jl/pull/173). That release changes the `named_binary_tree` vertex labels, which DataGraphs does not use, so it stays compatible with both v0.11 and v0.12. Co-Authored-By: Claude Opus 4.8 (1M context) --- Project.toml | 4 ++-- examples/Project.toml | 2 +- test/Project.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Project.toml b/Project.toml index b28e2f5..dbcbbf4 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "DataGraphs" uuid = "b5a273c3-7e6c-41f6-98bd-8d7f1525a36a" -version = "0.5.1" +version = "0.5.2" authors = ["Matthew Fishman and contributors"] [workspace] @@ -25,6 +25,6 @@ Dictionaries = "0.4" Graphs = "1" GraphsFlows = "0.1.1" ITensorVisualizationBase = "0.1" -NamedGraphs = "0.11.4" +NamedGraphs = "0.11.4, 0.12" SimpleTraits = "0.9" julia = "1.10" diff --git a/examples/Project.toml b/examples/Project.toml index 392f722..465001b 100644 --- a/examples/Project.toml +++ b/examples/Project.toml @@ -9,4 +9,4 @@ path = ".." [compat] DataGraphs = "0.5" Graphs = "1.12" -NamedGraphs = "0.11" +NamedGraphs = "0.11, 0.12" diff --git a/test/Project.toml b/test/Project.toml index b9dff5b..20aecd2 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -22,7 +22,7 @@ Graphs = "1.12" GraphsFlows = "0.1.1" ITensorPkgSkeleton = "0.3.42" ITensorVisualizationBase = "0.1" -NamedGraphs = "0.11" +NamedGraphs = "0.11, 0.12" SafeTestsets = "0.1" Suppressor = "0.2.8" Test = "1.10"