From 70e9a87c581a36c5e97f62ecde447e548f0e2386 Mon Sep 17 00:00:00 2001 From: DONNOT Benjamin Date: Mon, 29 Jul 2024 15:06:30 +0200 Subject: [PATCH] prep 0.9.1.dev0 --- CHANGELOG.rst | 5 +++++ docs/conf.py | 2 +- lightsim2grid/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9eba54c..f0bb92f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -23,6 +23,11 @@ TODO HVDC in Jacobian (see pandapower) TODO: in ContingencyAnalysisCpp: add back the `if(!ac_solver_used)` inside the `remove_from_Ybus` in order to perform the "invertibility" check TODO: in `main.cpp` check the returned policy of pybind11 and also the `py::call_guard()` stuff +TODO: a cpp class that is able to compute (DC powerflow) ContingencyAnalysis and TimeSeries using PTDF and LODF + +[0.9.1] 2024-xx-yy +-------------------------- + [0.9.0] 2024-07-29 -------------------------- diff --git a/docs/conf.py b/docs/conf.py index 9dc3eb5..a65e941 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Benjamin DONNOT' # The full version, including alpha/beta/rc tags -release = "0.9.0" +release = "0.9.1.dev0" version = '0.9' # -- General configuration --------------------------------------------------- diff --git a/lightsim2grid/__init__.py b/lightsim2grid/__init__.py index c109ead..ce42aff 100644 --- a/lightsim2grid/__init__.py +++ b/lightsim2grid/__init__.py @@ -6,7 +6,7 @@ # SPDX-License-Identifier: MPL-2.0 # This file is part of LightSim2grid, LightSim2grid implements a c++ backend targeting the Grid2Op platform. -__version__ = "0.9.0" +__version__ = "0.9.1.dev0" __all__ = ["newtonpf", "SolverType", "ErrorType", "solver", "compilation_options"] diff --git a/setup.py b/setup.py index a5f6182..2bd4521 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from pybind11.setup_helpers import Pybind11Extension, build_ext -__version__ = "0.9.0" +__version__ = "0.9.1.dev0" KLU_SOLVER_AVAILABLE = False # Try to link against SuiteSparse (if available)