diff --git a/README.md b/README.md index 5c3217c4..494bb3dd 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ You can confirm installation via `conda list` (figshare_patrons) $ conda list requiam ``` -You should see that the version is `0.12.0`. +You should see that the version is `0.12.1`. ### Configuration Settings @@ -256,13 +256,14 @@ We use [SemVer](http://semver.org/) for versioning. For the versions available, A list of released features and their issue number(s). List is sorted from moderate to minor revisions for reach release. -v0.12.0: +v0.12.0 - 0.12.1: * Grouper API tool, `GrouperAPI` #42, #60 * Grouper group creation with `add_grouper_group` script #42, #58 * Include `multi-user` feature for `user_update` script #52 * Re-vamp of logging in all scripts and classes #57 * Minor: buffering of `pandas` DataFrame for `script_run` #64 * Minor: Code refactoring in `grouper_query`, `ManualOverride` #62, #63 + * Minor: Perform checks to ensure that Grouper groups exist before API calls #66 v0.11.0 - 0.11.3: * Include manual override tool, `ManualOverride` #31, #47 diff --git a/requiam/__init__.py b/requiam/__init__.py index 66912c7d..3fe620f4 100644 --- a/requiam/__init__.py +++ b/requiam/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.12.0" +__version__ = "0.12.1" class TimerClass(object): diff --git a/setup.py b/setup.py index b12ab500..783b26cc 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='requiam', - version='v0.12.0', + version='v0.12.1', packages=find_packages('requiam'), url='https://github.com/ualibraries/ReQUIAM', license='MIT License',