From 531411a7f31021c5668643015c1e7eeb1c2cab59 Mon Sep 17 00:00:00 2001 From: Chun Ly Date: Fri, 2 Apr 2021 09:13:01 -0700 Subject: [PATCH] Bump version: v0.16.3 -> v0.16.4 --- README.md | 5 +++-- requiam/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e6c076d..4eb310f 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ You can confirm installation via `conda list` (figshare_patrons) $ conda list requiam ``` -You should see that the version is `0.16.3`. +You should see that the version is `0.16.4`. ### Configuration Settings @@ -294,7 +294,7 @@ Currently, there are two GitHub Action workflows: A list of released features and their issue number(s). List is sorted from moderate to minor revisions for reach release. -v0.16.0 - v0.16.3: +v0.16.0 - v0.16.4: * Merge `grouper_admin` and `grouper_query` modules #87 * Complete adoption of f-strings #118 * New pull request templates #120 @@ -302,6 +302,7 @@ v0.16.0 - v0.16.3: * Update files to reflect ReQUIAM_csv org change #137 * Minor: Update bug report template #131 * Update URLs for organization migration #132 + * Bug: Argument parsing does not properly handle integer input for comparison #143 v0.15.0 - v0.15.1: * GitHub actions for CI #105 diff --git a/requiam/__init__.py b/requiam/__init__.py index a04fb50..585beca 100644 --- a/requiam/__init__.py +++ b/requiam/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.16.3" +__version__ = "0.16.4" class TimerClass(object): diff --git a/setup.py b/setup.py index c65f380..feda02f 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='requiam', - version='v0.16.3', + version='v0.16.4', packages=['requiam'], url='https://github.com/UAL-ODIS/ReQUIAM', license='MIT License',