diff --git a/CHANGES.md b/CHANGES.md index 3a6b558f..59950844 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,22 @@ +v2020.3.19 +---------- +* Merge pull request #16 from chirranjeevigopal-TRI/MAT-1489_capacity_throughput_summary +* add cumulative capacity to summary stats +* Merge pull request #12 from danielschweigert-TRI/MAT1122 +* Merge pull request #15 from patrickherring-TRI/MAT-1490_updates_for_batch3 +* Merge pull request #14 from JosephMontoya-TRI/coverage +* Update test file with general parameters +* add coverage +* update dependencies, edit travis install +* add package name +* update for coverage tests +* Change the rest at the beginning of the cycle to be within 3 to 6.2 hours +* Update the template file to change lower safety voltage to 2.0V +* add charge energy and discharge energy to the biologic parser +* add method for biologic file parsing========== + v2020.3.8 --------- * Update the key for looking up diagnostic parameters to be `diagnostic_parameter_set` diff --git a/beep/__init__.py b/beep/__init__.py index 22b0626d..e92fde4f 100644 --- a/beep/__init__.py +++ b/beep/__init__.py @@ -21,7 +21,7 @@ # Versioning. The python code version is frequently tagged # with a commit hash from the repo, which is supplied via # an environment variable by the integration build procedure -__version__ = "2020.3.18" +__version__ = "2020.3.19" VERSION_TAG = os.environ.get("BEEP_VERSION_TAG") if VERSION_TAG is not None: __version__ = '-'.join([__version__, VERSION_TAG]) diff --git a/setup.py b/setup.py index 9abb8941..cf68bfa5 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup(name="beep", url="https://github.com/TRI-AMDD/beep", - version="2020.3.18", + version="2020.3.19", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',