Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.

Commit 8fc7e40

Browse files
committed
Updating CHANGELOG, setup.py, and redi/redi.py for release 0.14.3
1 parent 03ebe25 commit 8fc7e40

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

CHANGELOG

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
2015-05-14 v0.14.2
2+
* Summary: Now RED-I can fetch more files initially and run pre-processors in a specific order.
3+
4+
* Runs the dictionary of preprocessors in order sorted by their keys (module names). This is necessary when using multiple preprocessors that have ordered rules. Unsorted dictionaries have unpredictable ordering. (Nicholas Rejack)
5+
* make clean: remove `.eggs` folder (Andrei Sura)
6+
* Fixes #168 - add option to display version number (Andrei Sura)
7+
* Moving logic for creating dictionary of files to download to __init__ method. Improved logging. (Nicholas Rejack)
8+
* Updating TestGetEMRData.py to match new variable names in GetEmrData.py. (Nicholas Rejack)
9+
* Updated GetEmrData.py to rename download_file variable to download_list and download_file function to download_files. (Nicholas Rejack)
10+
* Fixing TestGetEMRData.py now that a new variable has been added to the EmrFileAccessDetails. (Nicholas Rejack)
11+
* UpdatingGetEmrData.py with new functionality. Now, in settings.ini a dictionary of files to be downloaded can be specified for emr_data_file. (Nicholas Rejack)
12+
* Changing variables in EmrFileAccessDetails for readability. (Nicholas Rejack)
13+
* Update README.md (Christopher P. Barnes)
14+
* Update README.md (Christopher P. Barnes)
15+
* use travis in container (Andrei Sura)
16+
* Add makefile tasks related to pypi (Andrei Sura)
17+
* added RedHat/Fedora installation documentation. (Nicholas Rejack)
18+
* bumping version number on docs/conf.py (Nicholas Rejack)
19+
* repaired some broken text in about.rst in documentation. (Nicholas Rejack)
20+
121
2015-05-14 v0.14.2
222
* Summary: Preprocessing has been improved to use the rewritten raw CSV file after processing it. This relocates some of the XML processing from GetEMRData.
323

redi/redi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"""
5555

5656
__author__ = "University of Florida CTS-IT Team"
57-
__version__ = "0.14.2"
57+
__version__ = "0.14.3"
5858
__email__ = "[email protected]"
5959
__status__ = "Development"
6060

setup.py

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

1919
setup(
2020
name='redi',
21-
version='0.14.2',
21+
version='0.14.3',
2222
author='https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/',
2323
author_email='[email protected]',
2424
packages=find_packages(exclude=['test']),

0 commit comments

Comments
 (0)