diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c73aac85..b9e78a3be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.0.1-rc.2 + +Small patch release to fix a missing import in helpers/parameters.py + # 2.0.0-rc.2 ## Contributions diff --git a/bcipy/helpers/parameters.py b/bcipy/helpers/parameters.py index ac78150fa..286b8e44a 100644 --- a/bcipy/helpers/parameters.py +++ b/bcipy/helpers/parameters.py @@ -5,7 +5,7 @@ from pathlib import Path from typing import Any, Dict, NamedTuple, Tuple -from bcipy.config import DEFAULT_ENCODING +from bcipy.config import DEFAULT_ENCODING, DEFAULT_PARAMETERS_PATH class Parameter(NamedTuple): diff --git a/setup.py b/setup.py index 71be5932a..307f5a3fe 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ AUTHOR = 'CAMBI' REQUIRES_PYTHON = '>3.6,<3.9' -VERSION = '2.0.0rc2' +VERSION = '2.0.1rc2' # What packages are required for this module to be executed?