Skip to content

Commit 6703eca

Browse files
committed
Update version to 0.9.6 to avoid conflicts with previous 0.9.5 (removed).
1 parent a950a7d commit 6703eca

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Python bindings and misc tools for using OpenDSS (EPRI Distribution System Simul
66

77
If you are looking for the C API library, see [`dss_capi`](http://github.com/PMeira/dss_capi/).
88

9-
Version 0.9.5, based on [OpenDSS revision 2152](https://sourceforge.net/p/electricdss/code/2152/tree/).
9+
Version 0.9.6, based on [OpenDSS revision 2152](https://sourceforge.net/p/electricdss/code/2152/tree/).
1010
This is a work-in-progress but it's deemed stable enough to be made public.
1111
*Note that, while the interface with OpenDSS is stable (classic version), the OpenDSS-PM (actor-based parallel machine version) interface was integrated recently and is experimental.*
1212

@@ -17,7 +17,7 @@ This module depends on CFFI, NumPy and, optionally, SciPy.Sparse for reading the
1717

1818
Recent changes
1919
==============
20-
- 2018-04-05 / version 0.9.5: Adds missing `ActiveCircuit.CktElements[index]` (or `...CktElements(index)`) and `ActiveCircuit.Buses[index]` (or `...Buses(index)`).
20+
- 2018-04-05 / version 0.9.6: Adds missing `ActiveCircuit.CktElements[index]` (or `...CktElements(index)`) and `ActiveCircuit.Buses[index]` (or `...Buses(index)`).
2121
- 2018-03-07 / version 0.9.4: Allows using `len` on several classes, fixes DSSProperty, and includes COM helpstrings as docstrings. Contains changes up to OpenDSS revision 2152.
2222
- 2018-02-16 / version 0.9.3: Integrates COM interface fixes from revision 2136 (`First` `Next` iteration on some elements)
2323
- 2018-02-12 / version 0.9.2: Experimental support for OpenDSS-PM (at the moment, a custom patch is provided for FreePascal support) and port COM interface fixes (OpenDSS revision 2134)

README.pdf

0 Bytes
Binary file not shown.

dss/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from .enums import *
88
from . import enums
99

10-
__version__ = '0.9.5'
10+
__version__ = '0.9.6'

dss/pm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from ..enums import *
88
from .. import enums
99

10-
__version__ = '0.9.5'
10+
__version__ = '0.9.6'

0 commit comments

Comments
 (0)