diff --git a/VERSIONS.md b/VERSIONS.md index ec7356a..f3705be 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -1,3 +1,5 @@ +### 1.3.13 - Fixed another bug - getSheets() - released to PyPI +* Error in headings with validity and annotation ### 1.3.12 - Fixed bug in getSheetsn() - release to PyPI * getSheets() was not returning the first sheet ### 1.3.11 - Fixed bug in getDecision() - release to PyPI diff --git a/docs/conf.py b/docs/conf.py index 41caf36..2619e0e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ # The full version, including alpha/beta/rc tags version = '1.3' -release = '1.3.12' +release = '1.3.13' master_doc = 'index' diff --git a/pyDMNrules.egg-info/PKG-INFO b/pyDMNrules.egg-info/PKG-INFO index 292e64b..416fa5b 100644 --- a/pyDMNrules.egg-info/PKG-INFO +++ b/pyDMNrules.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyDMNrules -Version: 1.3.12 +Version: 1.3.13 Summary: An implementation of DMN in Python. DMN rules are read from an Excel workbook Home-page: https://github.com/russellmcdonell/pyDMNrules Author: Russell McDonell diff --git a/pyDMNrules/DMNrules.py b/pyDMNrules/DMNrules.py index 09d0e19..71959ca 100644 --- a/pyDMNrules/DMNrules.py +++ b/pyDMNrules/DMNrules.py @@ -2692,9 +2692,9 @@ def getSheets(self): else: sheets[table] += '{}'.format(doubleLeft, doubleBottom, thisValidity) elif not haveAnnotation and (i == (len(self.decisionTables[table]['outputColumns']) - 1)): - sheets[table] += '{}'.format(singleLeft, doubleLeft, singleRight, thisValidity) + sheets[table] += '{}'.format(singleLeft, doubleBottom, singleRight, thisValidity) else: - sheets[table] += '{}'.format(singleLeft, doubleLeft, thisValidity) + sheets[table] += '{}'.format(singleLeft, doubleBottom, thisValidity) if haveAnnotation: for i in range(len(self.decisionTables[table]['annotation'])): if i == 0: diff --git a/pyDMNrules/__pycache__/DMNrules.cpython-39.pyc b/pyDMNrules/__pycache__/DMNrules.cpython-39.pyc index d18047a..0d18744 100644 Binary files a/pyDMNrules/__pycache__/DMNrules.cpython-39.pyc and b/pyDMNrules/__pycache__/DMNrules.cpython-39.pyc differ diff --git a/setup.py b/setup.py index 59aecc0..2b42e58 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='pyDMNrules', - version='1.3.12', + version='1.3.13', author='Russell McDonell', author_email='russell.mcdonell@c-cost.com', description='An implementation of DMN in Python. DMN rules are read from an Excel workbook',