From 73007529acdb741aed338cf9c8b344dba89c2669 Mon Sep 17 00:00:00 2001 From: Philip Top Date: Fri, 31 Jul 2026 08:01:37 -0700 Subject: [PATCH] resolve issue #51 and update version numbers --- CMakeLists.txt | 2 +- pyproject.toml | 2 +- src/griddyn/links/Hvdc.cpp | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 156ac7c98..dbf61ad1c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.28) cmake_policy(VERSION 3.28) -project(GRIDDYN VERSION 0.11.0) +project(GRIDDYN VERSION 0.11.2) if(NOT CMAKE_SIZEOF_VOID_P EQUAL 8) message(FATAL_ERROR "GridDyn requires a 64-bit target platform") diff --git a/pyproject.toml b/pyproject.toml index 89576e8e7..583c7401e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "griddyn" -version = "0.11.1" +version = "0.11.2" description = "Python bindings for GridDyn" readme = "README.md" requires-python = ">=3.13" diff --git a/src/griddyn/links/Hvdc.cpp b/src/griddyn/links/Hvdc.cpp index 1a00bee7b..aadbe3517 100644 --- a/src/griddyn/links/Hvdc.cpp +++ b/src/griddyn/links/Hvdc.cpp @@ -28,7 +28,6 @@ Hvdc::Hvdc(const std::string& objName): Subsystem(4, objName) // default values auto* dcl = new DcLink("dcline"); - dcl->set("type", "slk"); Subsystem::add(dcl); auto* rec1 = new AcDcConverter("rect1");