Skip to content

Commit c788534

Browse files
committed
Tweak docs for 0.10.7, use DSS C-API 0.10.7
1 parent 6e42d58 commit c788534

File tree

5 files changed

+27
-10
lines changed

5 files changed

+27
-10
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ matrix:
77
sudo: required
88
env:
99
- DOCKER_IMAGE=pmeira/manylinux_wheel_cmake_fpc320
10-
- DSS_CAPI_TAG=0.10.7rc4
10+
- DSS_CAPI_TAG=0.10.7
1111
- LINUX_X64=1
1212
- CONDA_SUBDIR=linux-64
1313
services:
@@ -32,7 +32,7 @@ matrix:
3232
sudo: required
3333
env:
3434
- DOCKER_IMAGE=pmeira/manylinux_wheel_cmake_fpc320_i686
35-
- DSS_CAPI_TAG=0.10.7rc4
35+
- DSS_CAPI_TAG=0.10.7
3636
- CONDA_SUBDIR=linux-32
3737
services:
3838
- docker
@@ -52,7 +52,7 @@ matrix:
5252
- name: "osx_x64"
5353
os: osx
5454
env:
55-
- DSS_CAPI_TAG=0.10.7rc4
55+
- DSS_CAPI_TAG=0.10.7
5656
script:
5757
- export TRAVIS_TAG_DSS_PYTHON=$TRAVIS_TAG
5858
- export TRAVIS_TAG=

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ Check the [changelog](docs/changelog.md#0107) document for a detailed list for a
4646

4747
- Simple maintenance release.
4848
- Updated to DSS C-API 0.10.7, which includes most changes up to OpenDSS v9.1.3.4.
49-
- Includes tweaks related to the `CapRadius` property.
50-
- New properties ported from the official COM interface: `Bus.AllPCEatBus`, `Bus.AllPDEatBus`, and `CktElement.TotalPowers`.
49+
- 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.
50+
- New API properties ported from the official COM interface: `Bus.AllPCEatBus`, `Bus.AllPDEatBus`, `CktElement.TotalPowers`, `Meters.ZonePCE`
5151

5252
## Missing features and limitations
5353

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ skip_non_tags: false
33
image: Visual Studio 2019
44
clone_folder: c:\projects\dss_python
55
environment:
6-
DSS_CAPI_TAG: 0.10.7rc4
6+
DSS_CAPI_TAG: 0.10.7
77
DSS_CAPI_PATH: c:\projects\dss_capi
88
ANACONDA_API_TOKEN:
99
secure: Pcm5IXFi4ZUsi1ue5QvPNASDo1Ns1REYbAwDJXRd3FRn2CfKbNPgnPda6fxoN6wG

docs/changelog.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,26 @@
11
# 0.10.7
22

3-
- Simple maintenance release.
3+
- Maintenance release.
44
- Updated to DSS C-API 0.10.7, which includes most changes up to OpenDSS v9.1.3.4.
5-
- Includes tweaks related to the `CapRadius` property.
6-
- New properties ported from the official COM interface: `Bus.AllPCEatBus`, `Bus.AllPDEatBus`, and `CktElement.TotalPowers`.
5+
- 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.
6+
- New API properties ported from the official COM interface: `Bus.AllPCEatBus`, `Bus.AllPDEatBus`, `CktElement.TotalPowers`, `Meters.ZonePCE`
7+
8+
DSS C-API 0.10.7 changes:
9+
10+
- Simple maintenance release, which includes most changes up to OpenDSS v9.1.3.4 (revision 2963).
11+
- 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.
12+
- This version should be fully API compatible with 0.10.3+.
13+
- 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
14+
- New functions API ported from the official OpenDSS include: `Bus_Get_AllPCEatBus`, `Bus_Get_AllPDEatBus`, `CktElement_Get_TotalPowers`, `Meters_Get_ZonePCE`.
15+
- The changes ported from the official OpenDSS include the following (check the repository for more details):
16+
- "Adds LineType property to LineCode and LineGeometry objects."
17+
- "Correcting bug found in storage device when operating in idling mode. It was preventing the solution of other test feeders (IEEE 9500)"
18+
- "Enabling fuel option for generator, fixing bug found in TotalPower command."
19+
- "Adding kvar compensation calculation for normalizing reactive power at feeder head. v 9.1.2.4"
20+
- "Adding: - Line type variable to line definition. - AllPCEatBus and AllPDEatBus commands to the executive command set. - AllPCEatBus and AllPDEatBus commands to bus interface in COM/DLL. (...)"
21+
- "Adding capability to energy meter for getting the list of all PCE (shunt) within a zone. Interface "AllPCEatZone" for COM/DLL created."
22+
- "Fixing bug found when calculating voltage bases with large amount of numbers (large array)."
23+
724

825
# 0.10.6
926

dss/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
from .v7 import *
77
from .patch_dss_com import patch_dss_com
88

9-
__version__ = '0.10.7rc4'
9+
__version__ = '0.10.7'

0 commit comments

Comments
 (0)