From 8fc7e40525511a3d164014b80aa9bcc5b76f7b2b Mon Sep 17 00:00:00 2001 From: Nicholas Rejack Date: Wed, 25 Nov 2015 09:43:12 -0500 Subject: [PATCH] Updating CHANGELOG, setup.py, and redi/redi.py for release 0.14.3 --- CHANGELOG | 20 ++++++++++++++++++++ redi/redi.py | 2 +- setup.py | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b924ae3..8ea8533 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,23 @@ +2015-05-14 v0.14.2 + * Summary: Now RED-I can fetch more files initially and run pre-processors in a specific order. + + * 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) + * make clean: remove `.eggs` folder (Andrei Sura) + * Fixes #168 - add option to display version number (Andrei Sura) + * Moving logic for creating dictionary of files to download to __init__ method. Improved logging. (Nicholas Rejack) + * Updating TestGetEMRData.py to match new variable names in GetEmrData.py. (Nicholas Rejack) + * Updated GetEmrData.py to rename download_file variable to download_list and download_file function to download_files. (Nicholas Rejack) + * Fixing TestGetEMRData.py now that a new variable has been added to the EmrFileAccessDetails. (Nicholas Rejack) + * 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) + * Changing variables in EmrFileAccessDetails for readability. (Nicholas Rejack) + * Update README.md (Christopher P. Barnes) + * Update README.md (Christopher P. Barnes) + * use travis in container (Andrei Sura) + * Add makefile tasks related to pypi (Andrei Sura) + * added RedHat/Fedora installation documentation. (Nicholas Rejack) + * bumping version number on docs/conf.py (Nicholas Rejack) + * repaired some broken text in about.rst in documentation. (Nicholas Rejack) + 2015-05-14 v0.14.2 * Summary: Preprocessing has been improved to use the rewritten raw CSV file after processing it. This relocates some of the XML processing from GetEMRData. diff --git a/redi/redi.py b/redi/redi.py index 9dcdcb3..018d3dd 100755 --- a/redi/redi.py +++ b/redi/redi.py @@ -54,7 +54,7 @@ """ __author__ = "University of Florida CTS-IT Team" -__version__ = "0.14.2" +__version__ = "0.14.3" __email__ = "ctsit@ctsi.ufl.edu" __status__ = "Development" diff --git a/setup.py b/setup.py index c9a3e21..491c756 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='redi', - version='0.14.2', + version='0.14.3', author='https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/', author_email='ctsit@ctsi.ufl.edu', packages=find_packages(exclude=['test']),