From 8f702462d5070bf2b1e22b7281a4a2b8899fc117 Mon Sep 17 00:00:00 2001 From: Paul Wildenhain Date: Thu, 16 Jul 2020 16:53:08 -0400 Subject: [PATCH] :heavy_plus_sign: Bump to version 1.1.0 Also modify the section titles in HISTORY.rst and classifiers in setup.py. :reminder_ribbon: This is why we do branching paul :man_facepalming: --- HISTORY.rst | 39 ++++++++++++++++++++++++++++++++++++--- redcap/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 38 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1746398e..47b03f77 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,13 +1,46 @@ HISTORY ------- +1.1.0 (2020-07-16) ++++++++++++++++++++ + +* API Support + - Add `rec_type` support in `import_records()` (#40 @dckc) + - Add `export_checkbox_labels` keyword arg to `export_records()` (#48 Tyler Rivera) + - Properly backfill requested fields for >6.X servers (#55) + - Add Export Survey Participant List method (#71) + - Add `filter_logic` to export_records (#85 @erikh360) + - Add `forceAutoNumber` parameter to `import_records()` (#86 @CarlosBorroto) + - Add Export Project Information (#106 @martinburchell) + - Add Generate Next Record Name (#107 @martinburchell) + - Add `repeat_instance` parameter to `imp_file` request (#104 @martinburchell) + - Add Delete Record (#77 @damonms) + - Add Export Reports (#91 @mcarmack) + +* Package Improvements + - Add redcap_version attribute to Project (#44 Tyler Rivera) + - Support lazy loading of Projects (#53 Tyler Rivera) + - Add Python 3 support (#67, #92 @jmillxyz, @fonnesbeck) + - Remove obsolete Project.filter() (#105 @martinburchell) + - Change API parameters from comma-separated to arrays (#110 @martinburchell) + - Use single `requests.Session()` for connections (#120 @KarthikMasi) + +* Bug Fixes + - Allow later versions of semantic-version (#108 @martinburchell) + - Fix package version when installing from GitHub (#113) + - Handle EmptyData error from pandas read_csv (#118 @martinburchell) + +* Documentation + - Added REDCap API changelog from 6.0.0 - 6.12.1 (#64 @SlightlyUnorthodox) + - Python 3 updates (#115 @sujaypatil96) + 1.0.2 (2016-10-05) -+++++++++++++++++ ++++++++++++++++++++ * Fix issue in new survey participant export method. 1.0.1 (2016-10-05) -+++++++++++++++++ ++++++++++++++++++++ * Add a ``Project`` method to export the survey participant list. * Update author email. @@ -143,4 +176,4 @@ HISTORY 0.1 (2011-09-14) +++++++++++++++++ -* Basic import, export, metadata +* Basic import, export, metadata \ No newline at end of file diff --git a/redcap/__init__.py b/redcap/__init__.py index f4df9353..7e01a3fa 100644 --- a/redcap/__init__.py +++ b/redcap/__init__.py @@ -4,7 +4,7 @@ __author__ = 'Scott Burns ' __license__ = 'MIT' __copyright__ = '2014, Vanderbilt University' -__version__ = '1.0.2' +__version__ = '1.1.0' """ This module exposes the REDCap API through the Project class. Instantiate the diff --git a/setup.py b/setup.py index dbe302b4..28cf627e 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def find_version(*file_parts): install_requires=required, platforms='any', classifiers=( - 'Development Status :: 5 - Production', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License',