diff --git a/CHANGES.md b/CHANGES.md index dbb8eeef..b8519ba4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -13,6 +13,11 @@ For change history for [MOST][3], see [most/CHANGES.md](most/CHANGES.md). since 8.0b1 ----------- +#### 12/5/23 + - Fix [bug #210][36] where radial power flow methods resulted in + numerical error with multiple generators at a bus. + *Thanks to Mirko Todorovski.* + #### 6/6/23 - Fix minor bug in `size()` method of `mp.mapped_array.size()` resulting in fatal error if called with two output arguments. @@ -3363,3 +3368,4 @@ First Public Release – *Jun 25, 1997* [33]: https://hub.docker.com/r/gnuoctave/octave [34]: https://matpower.org/documentation/dev-manual/ [35]: https://github.com/MATPOWER/mx-simulink_matpower +[36]: https://github.com/MATPOWER/matpower/issues/210 diff --git a/docs/src/MATPOWER-manual/MATPOWER-manual.tex b/docs/src/MATPOWER-manual/MATPOWER-manual.tex index 0a48d1d0..b5966f94 100644 --- a/docs/src/MATPOWER-manual/MATPOWER-manual.tex +++ b/docs/src/MATPOWER-manual/MATPOWER-manual.tex @@ -8588,6 +8588,7 @@ \subsubsection*{Bugs Fixed} \item Fix generator voltage set points in \code{case9target} to match \code{case9}. \item A vector-valued \code{label} passed to \code{apply\_changes()} now throws a useful error. \item Fix bug in previously undocumented feature of \code{makePTDF()} where the \code{slack} input is a matrix. \emph{Thanks to Jon Martinez Corral.} +\item Fix bug \#210 where radial power flow methods resulted in numerical error with multiple generators at a bus. \emph{Thanks to Mirko Todorovski.} \end{itemize} \subsubsection*{Incompatible Changes} diff --git a/lib/mpver.m b/lib/mpver.m index 42c22df5..a0966ee3 100644 --- a/lib/mpver.m +++ b/lib/mpver.m @@ -26,9 +26,9 @@ % v{1} = ver(p); v{1} = struct( 'Name', 'MATPOWER', ... - 'Version', '8.0b1', ... + 'Version', '8.0b1+', ... 'Release', '', ... - 'Date', '30-May-2023' ); + 'Date', '05-Dec-2023' ); if nargout > 0 if nargin > 0 rv = v{1};