Skip to content

Commit c3690c0

Browse files
committed
Update CHANGES for absolute path handling by loadgenericdata().
1 parent c9ee0ad commit c3690c0

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@ Change history for MOST
22
=======================
33

44

5+
since 1.3.1
6+
-----------
7+
8+
#### 2/16/26
9+
- Allow absolute paths for file inputs to `loadgenericdata()` and the
10+
functions that call it, e.g. `addstorage()`, `addwind()`, `getprofiles()`,
11+
`loadmd()`, `loadstoragedata()`, `loadxgendata()`.
12+
13+
514
Version 1.3.1 - *Jul 12, 2025*
615
------------------------------
716

docs/src/MOST-manual/MOST-manual.tex

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159
\newcommand{\mostname}[0]{{{\bf M}{\sc atpower} \textbf{O}ptimal \textbf{S}cheduling \textbf{T}ool}}
160160
\newcommand{\mosturl}[0]{https://github.com/MATPOWER/most}
161161
\newcommand{\mostlink}[0]{\href{\mosturl}{\most{}}}
162-
\newcommand{\mostver}[0]{1.3.1}
162+
\newcommand{\mostver}[0]{1.3.2-dev}
163163
\newcommand{\md}[0]{{\most{} Data struct}}
164164
\newcommand{\powerweb}[0]{{\sc PowerWeb}}
165165
\newcommand{\pserc}[0]{{\sc PSerc}}
@@ -240,7 +240,7 @@
240240
%%% BEFORE PUBLISHING A NEW VERSION:
241241
%%% Update the publication year for \bibitem{matpower} and
242242
%%% \bibitem{matpower_manual} to the year of the latest release
243-
\date{July 12, 2025} % comment this line to display the current date
243+
%\date{July 12, 2025} % comment this line to display the current date
244244
%\date{December 14, 2011\thanks{Second revision. First revision was December 13, 2011}} % comment this line to display the current date
245245

246246
%%% BEGIN DOCUMENT
@@ -250,7 +250,7 @@
250250
\vfill
251251
\begin{center}
252252
{\scriptsize
253-
\copyright~2011--2025~\PSERC{}\\
253+
\copyright~2011--2026~\PSERC{}\\
254254
All Rights Reserved}
255255
\end{center}
256256

@@ -3506,6 +3506,21 @@ \subsubsection*{PRO Version}
35063506
\end{itemize}
35073507

35083508

3509+
\subsection{Version 1.3.2 -- released ??? ??, 202?}
3510+
\label{app:v132}
3511+
3512+
The \href{https://matpower.org/docs/MOST-manual-1.3.2.pdf}{\most{} 1.3.2 User's Manual} is available online.\footnote{\url{https://matpower.org/docs/MOST-manual-1.3.2.pdf}}
3513+
3514+
\subsubsection*{Changes}
3515+
\begin{itemize}
3516+
\item Allow absolute paths for file inputs to \codeq{loadgenericdata()} and the functions that call it, e.g. \codeq{addstorage()}, \codeq{addwind()}, \codeq{getprofiles()}, \codeq{loadmd()}, \codeq{loadstoragedata()}, \codeq{loadxgendata()}.
3517+
\end{itemize}
3518+
3519+
\subsubsection*{Bugs Fixed}
3520+
\begin{itemize}
3521+
\item
3522+
\end{itemize}
3523+
35093524
% \subsection{Version 1.4 -- released ??? ?, 202?}
35103525
% \label{app:v14}
35113526
%

lib/mostver.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
% See also mpver.
1717

1818
% MOST
19-
% Copyright (c) 2010-2025, Power Systems Engineering Research Center (PSERC)
19+
% Copyright (c) 2010-2026, Power Systems Engineering Research Center (PSERC)
2020
% by Ray Zimmerman, PSERC Cornell
2121
%
2222
% This file is part of MOST.
2323
% Covered by the 3-clause BSD License (see LICENSE file for details).
2424
% See https://github.com/MATPOWER/most for more info.
2525

2626
v = struct( 'Name', 'MOST', ...
27-
'Version', '1.3.1', ...
27+
'Version', '1.3.2-dev', ...
2828
'Release', '', ...
29-
'Date', '12-Jul-2025' );
29+
'Date', '16-Feb-2026' );
3030
if nargout > 0
3131
if nargin > 0
3232
rv = v;

0 commit comments

Comments
 (0)