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

Commit

Permalink
Bumping version number for release in CHANGELOG, docs/conf.py, setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nrejac committed Mar 17, 2016
1 parent 454de9f commit a9ee336
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
2016-03-17 v0.15.1

* Summary: RED-I now accepts a file as input from the command line, using -f FILENAME.

* add tests to validate the input file used with the commandline switch -f or --file (Christopher Barnes)
* move logger setup and config to start sooner since it is needed by other functions (Christopher Barnes)
* add testdata.csv to use as test input for commandline options test and development (Christopher Barnes)
* added .coverage, cover/, coverage.xml and nosettest.xml to .gitignore. The are local to my test runs (Christopher Barnes)
* add TODO items (Christopher Barnes)
* add todo item for adding a switch to allow another sorting behavior for data points and events (Christopher Barnes)
* Fixing broken test. (Nicholas Rejack)
* added raw text file to def _run and function signature (Kevin Steven Hanson)
* moved raw txt exception out of run function (Kevin Steven Hanson)
* adding option to bypass raw.txt with an if else block that makes more sense than my previous one (Kevin Steven Hanson)
* Fixing bad operator. (Nicholas Rejack)
* Adding code to catch if user tries to use -e and -f at same time (Nicholas Rejack)
* added ability to use input file and bypass hard coded raw.txt (Kevin Steven Hanson)
* i called logger in my agruement before it was defined, my bad (Kevin Steven Hanson)
* adding info statement to work with logger for -f argument (Kevin Steven Hanson)
* Added the missing usage for the file input. (Buck72)
* Add the flag for input file for REDI to use. (Buck72)
* created input file path to hanlde -f file handle with a basic print statement for now (Kevin Steven Hanson)
* add .eggs as correction for directory name to .gitignore (Christopher Barnes)
* add .egg and virtualenvironment folder venv from instructions to .gitignore (Christopher Barnes)
* Adding a new exception to watch for in redcapClient.py: ConnectionError (Nicholas Rejack)

2016-02-12 v0.15.0

* Summary: Improved handling of network issues while sending to REDCap.
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,16 @@

# General information about the project.
project = u'RED-I'
copyright = u'2014-2015, CTS-IT'
copyright = u'2014-2016, CTS-IT'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.14.2'
version = '0.15.1'
# The full version, including alpha/beta/rc tags.
release = '0.14.2'
release = '0.15.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='redi',
version='0.15.0',
version='0.15.1',
author='https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/',
author_email='[email protected]',
packages=find_packages(exclude=['test']),
Expand All @@ -27,7 +27,7 @@
'redi': ['utils/*.xsl', 'utils/*.xsd']
},
url='https://github.com/ctsit/redi',
download_url = 'https://github.com/ctsit/redi/releases/tag/0.15.0',
download_url = 'https://github.com/ctsit/redi/releases/tag/0.15.1',
keywords = ['EMR', 'EHR', 'REDCap', 'Clinical Data'],
license='BSD 3-Clause',
description='REDCap Electronic Data Importer',
Expand Down

0 comments on commit a9ee336

Please sign in to comment.