Skip to content

Commit

Permalink
Update CHANGES and manual.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdzman committed Dec 5, 2023
1 parent 980a3b0 commit f5456b0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
1 change: 1 addition & 0 deletions docs/src/MATPOWER-manual/MATPOWER-manual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions lib/mpver.m
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit f5456b0

Please sign in to comment.