Skip to content

Commit a918a83

Browse files
committed
Release 8.1.
1 parent f9db8a0 commit a918a83

6 files changed

Lines changed: 31 additions & 9 deletions

File tree

CHANGES.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ Change history for MP-Test
22
==========================
33

44

5-
Since version 8.0
6-
-----------------
5+
Version 8.1 - *July 5, 2024*
6+
----------------------------
77

88
#### 7/5/25
9+
- Release 8.1.
910
- Add two new functions to assist with code for debugging:
1011
- `assert_debug()` -- calls `assert()` if `DEBUG_MODE` is on
1112
- `toggle_debug_mode()` -- set/toggles whether `DEBUG_MODE` is on

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 1996-2024, Power Systems Engineering Research Center (PSERC)
1+
Copyright (c) 1996-2025, Power Systems Engineering Research Center (PSERC)
22
and individual contributors (see AUTHORS file for details).
33
All rights reserved.
44

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ of MATLAB or Octave, including setting up your MATLAB/Octave path.
3434
```matlab
3535
>> test_mptest
3636
t_test_fcns.......ok
37+
t_debug_assert....ok
3738
t_have_feature....ok
38-
All tests successful (29 of 29)
39-
Elapsed time 0.14 seconds.
39+
All tests successful (37 of 37)
40+
Elapsed time 0.13 seconds.
4041
```
4142

4243
Usage
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
What's New in MP-Test 8.1
2+
-------------------------
3+
4+
#### Released July 5, 2025
5+
6+
Below is a summary of the changes since version 8.0 of MP-Test. See the
7+
[`CHANGES.md`][1] file for all the gory details.
8+
9+
#### New Features:
10+
- Two new functions to assist with code for debugging:
11+
- `assert_debug()` -- calls `assert()` if `DEBUG_MODE` is on
12+
- `toggle_debug_mode()` -- set/toggles whether `DEBUG_MODE` is on
13+
14+
#### Changes:
15+
- Enhance `t_is()` to handle `Inf` values appropriately.
16+
17+
18+
[1]: ../../CHANGES.md
19+
[2]: https://matpower.org/doc/mptest/
20+
[3]: https://matpower.org/doc/mptest/reference.html

docs/sphinx/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Ray D. Zimmerman'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '8.0'
25+
release = '8.1'
2626

2727

2828
# -- General configuration ---------------------------------------------------

lib/mptestver.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414
% release date of the current installation of MP-Test.
1515

1616
% MP-Test
17-
% Copyright (c) 2010-2024, Power Systems Engineering Research Center (PSERC)
17+
% Copyright (c) 2010-2025, Power Systems Engineering Research Center (PSERC)
1818
% by Ray Zimmerman, PSERC Cornell
1919
%
2020
% This file is part of MP-Test.
2121
% Covered by the 3-clause BSD License (see LICENSE file for details).
2222
% See https://github.com/MATPOWER/mptest for more info.
2323

2424
v = struct( 'Name', 'MP-Test', ...
25-
'Version', '8.0', ...
25+
'Version', '8.1', ...
2626
'Release', '', ...
27-
'Date', '10-May-2024' );
27+
'Date', '05-Jul-2025' );
2828
if nargout > 0
2929
if nargin > 0
3030
rv = v;

0 commit comments

Comments
 (0)