Skip to content

Commit b17e9bc

Browse files
committed
Bump version number and update changelog for release 1.14.0
1 parent f8c4f24 commit b17e9bc

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
Changelog
22
=========
3+
## [1.14.0] - 2024-08-26
4+
### Summary
5+
This release adds support for multiple REDCap projects, in case the Optional Modules such as LBD or FTLD are broken out into their own REDCap projects. To pull from multiple REDCap projects into the same `redcap_input.csv` file, create a list of API tokens in your config file. This update also changes NACCulator's event detection to require the presence of both the Z1X and the A1 forms for UDS visits.
6+
7+
### Added
8+
* Add additional unit test (Michael Bentz)
9+
* Add pandas to setup.py (Michael Bentz)
10+
* Add script to combine REDCap project data (Michael Bentz)
11+
12+
### Updated
13+
* Update README with new requirements for ivp and fvp processing (Samantha Emerson)
14+
* Add A1 to required forms for IVP and FVP processing (Samantha Emerson)
15+
* Bump report_handler dependency to 1.3.0 (Michael Bentz)
16+
317
## [1.13.1] - 2024-04-15
418
### Summary
519
This release removes the `.vscode` sub-module from the NACCulator repo, since it points to a private repository and makes NACCulator difficult to install for those who do not have permissions for the .vscode repo.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from setuptools import setup, find_packages
88

9-
VERSION = "1.13.1"
9+
VERSION = "1.14.0"
1010

1111
setup(
1212
name="nacculator",
@@ -33,7 +33,7 @@
3333

3434
install_requires=[
3535
"PyCap>=2.1.0",
36-
"pandas>=2.2.0",
36+
"pandas>=2.2.0",
3737
"report_handler @ git+https://git@github.com:/ctsit/report_handler.git@1.3.0"
3838
],
3939

0 commit comments

Comments
 (0)