From 009e4510a6b415a94713ad2a5364e778684d830a Mon Sep 17 00:00:00 2001 From: odow Date: Wed, 24 Jul 2024 15:36:17 +1200 Subject: [PATCH 1/2] Prep for v1.8.0 --- Project.toml | 2 +- docs/Project.toml | 6 +++++- docs/src/changelog.md | 14 ++++++++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 9c8de83db3..2065eb7ff9 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SDDP" uuid = "f4570300-c277-11e8-125c-4912f86ce65d" authors = ["Oscar Dowson "] -version = "1.7.0" +version = "1.8.0" [deps] Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b" diff --git a/docs/Project.toml b/docs/Project.toml index 3fa7dfbd67..506a1f325d 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -19,13 +19,17 @@ StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [compat] +CSV = "0.10" +DataFrames = "1" +Distributions = "0.25" Documenter = "1" ForwardDiff = "0.10" +GR = "0.73" HiGHS = "1" Ipopt = "1" JSON = "0.21" JuMP = "1.11.1" Literate = "2" Plots = "1" -PowerModels = "0.19" +PowerModels = "0.19, 0.21" StatsPlots = "0.15" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index efa84e4dc3..db5623718f 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,20 @@ CurrentModule = SDDP The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v1.8.0 (July 24, 2024) + +### Added + + - Added `SDDP.Threaded()`, which is an experimental parallel scheme that + supports solving problems using multiple threads. Some parts of SDDP.jl may + not be threadsafe, and this can cause incorrect results, segfaults, or other + errors. Please use with care and report any issues by opening a GitHub issue. + (#758) + +### Other + + - Documentation improvements and fixes (#747) (#759) + ## v1.7.0 (June 4, 2024) ### Added From fc38d86f03dc954de6128ad6b42b38f754f3a38e Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Wed, 24 Jul 2024 16:34:17 +1200 Subject: [PATCH 2/2] Update docs/src/changelog.md --- docs/src/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index db5623718f..ceb93e46a7 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added `SDDP.Threaded()`, which is an experimental parallel scheme that supports solving problems using multiple threads. Some parts of SDDP.jl may - not be threadsafe, and this can cause incorrect results, segfaults, or other + not be thread-safe, and this can cause incorrect results, segfaults, or other errors. Please use with care and report any issues by opening a GitHub issue. (#758)