Skip to content

Commit 268c474

Browse files
committed
release '0.5.50'
1 parent 628fc9b commit 268c474

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed

docs/source/changes.rst

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,43 @@ History
44
Changes
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+
728
2019-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

1536
2019-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

2145
release r0.5.49
2246
~~~~~~~~~~~~~~~

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
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.

eppy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
__author__ = """Santosh Philip"""
1717
__email__ = 'santosh@noemail.com'
18-
__version__ = '0.5.49'
18+
__version__ = '0.5.50'
1919

2020

2121
from six import StringIO

0 commit comments

Comments
 (0)