File tree Expand file tree Collapse file tree 3 files changed +30
-6
lines changed
Expand file tree Collapse file tree 3 files changed +30
-6
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,43 @@ History
44Changes
55~~~~~~~
66
7+ release r0.5.50
8+ ~~~~~~~~~~~~~~~
9+
10+ 2019-07-06
11+ ----------
12+
13+ - Fixed an installation bug
14+ - issue # 247
15+
16+ 2019-06-11
17+ ----------
18+
19+ - Allows mixed cases for specifying objects:
20+ - issue # 242
21+ - the code now works in the following way::
22+
23+ # you can use:
24+ objs = idf.idfobjects['ElectricEquipment']
25+ # instead of
26+ objs = idf.idfobjects['ElectricEquipment'.upper()]
27+
7282019-06-02
829----------
930
1031- Fixes the TypeError
1132 - 'TypeError: can only concatenate list (not "dict_keys") to list' is fixed
12- - issue # 113
33+ - issue # 113, # 239
1334
1435
15362019-05-27
1637----------
1738
18- - eppy throws an exception 'NoIDDFieldsError' while reading an IDF file when there are insufficient fields in the IDD file
19- - issue # 238
39+ - fixed issue # 238
40+ - **Problem: ** if the IDF object has more fileds than that in the IDD file, eppy will truncate the object and will give no warning.
41+ - **Solution: ** eppy should throw an exception to warn the user that the IDF file is not readable without changing the IDD file.
42+ - The exception message will the text that has to be added to the IDD file, so that it works correctly.
43+
2044
2145release r0.5.49
2246~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change 5656# built documents.
5757#
5858# The short X.Y version.
59- version = '0.5.49 '
59+ version = '0.5.50 '
6060# The full version, including alpha/beta/rc tags.
61- release = '0.5.49 '
61+ release = '0.5.50 '
6262
6363# The language for content autogenerated by Sphinx. Refer to documentation
6464# for a list of supported languages.
Original file line number Diff line number Diff line change 1515
1616__author__ = """Santosh Philip"""
1717__email__ = 'santosh@noemail.com'
18- __version__ = '0.5.49 '
18+ __version__ = '0.5.50 '
1919
2020
2121from six import StringIO
You can’t perform that action at this time.
0 commit comments