Skip to content

Commit 52d6816

Browse files
committed
Minor updates to use DSS C-API 0.10.7
1 parent ff3c9ed commit 52d6816

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

+DSS_MATLAB/version.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
function result = version
2-
result = '0.10.6';
2+
result = '0.10.7';
33
end

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ language: generic
22

33
env:
44
global:
5-
- DSS_CAPI_VERSION=0.10.6
6-
- DSS_MATLAB_VERSION=0.10.6
5+
- DSS_CAPI_VERSION=0.10.7
6+
- DSS_MATLAB_VERSION=0.10.7
77

88
matrix:
99
include:

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Related projects:
1717
- [`OpenDSSDirect.py`](http://github.com/dss-extensions/OpenDSSDirect.py): More pythonic bindings and useful tools.
1818
- [`DSS Sharp`](http://github.com/dss-extensions/dss_sharp/): .NET assembly to use the native DLL, mimics the COM object as used in .NET.
1919

20-
Version 0.10.6, released on 2020-08-02, covers most of the COM functions and classes, besides some extensions from DSS C-API. If you find a missing function or unexpected behavior, please open an issue on GitHub to both help us track and hopefully fix it, and also inform other users. This project uses the [DSS C-API library version 0.10.6](https://github.com/dss-extensions/dss_capi/blob/0.10.x/docs/changelog.md#version-0106), based on OpenDSS revision 2909 (which is slightly newer than OpenDSS v9.0.0.6).
20+
Version 0.10.7, released on 2020-12-29, covers most of the COM functions and classes, besides some extensions from DSS C-API. If you find a missing function or unexpected behavior, please open an issue on GitHub to both help us track and hopefully fix it, and also inform other users. This project uses the [DSS C-API library version 0.10.6](https://github.com/dss-extensions/dss_capi/blob/0.10.x/docs/changelog.md#version-0106), based on OpenDSS revision 2963 (which is slightly newer than OpenDSS v9.1.3.3).
2121

22-
## Highlights from 0.10.6
22+
## Highlights from 0.10.7
2323

24-
- New `DSSobj.LegacyModels` toggle to activate pre-OpenDSS 9.0 models (`PVSystem`, `Storage`, ...). By default, the new models are used (previously known as `PVSystem2`, `Storage2`, ...).
25-
- New Extended Errors mechanism, signaling lots of previously silent errors due to bad API usage. For backwards compatibility, you can disable it with `DSSobj.Error.ExtendedErrors = 0`.
24+
- Includes an important bug fix related to the `CapRadius` DSS property. If your DSS scripts included the pattern `GMRac=... rad=...` or `GMRac=... diam=...` (in this order and without specifying `CapRadius`), you should upgrade and re-evaluate the results.
25+
- A reference document listing the DSS commands and properties for all DSS elements is now available at https://github.com/dss-extensions/dss_capi/blob/0.10.x/docs/dss_properties.md
2626

27-
More at [DSS C-API changelog](https://github.com/dss-extensions/dss_capi/blob/0.10.x/docs/changelog.md#version-0106).
27+
More at [DSS C-API changelog](https://github.com/dss-extensions/dss_capi/blob/0.10.x/docs/changelog.md#version-0107).
2828

2929
## Usage
3030

0 commit comments

Comments
 (0)