diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md new file mode 100644 index 00000000..5e419a08 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -0,0 +1,30 @@ +--- +name: Enhancement +about: Provide specifics for a new feature or request +title: 'Enhancement: ____(provide a descriptive name)' +labels: enhancement +assignees: '' + +--- + +**Summary (REQUIRED)** + + +**Motivation (REQUIRED)** + + +**Objectives (REQUIRED)** + + +**Proposal (REQUIRED)** + + +**Testing notes (Optional)** + + +**Additional notes (Optional)** + + + +**Implemented in**: TBD \ No newline at end of file diff --git a/README.md b/README.md index 6c4f452d..e8632dbb 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.13.6`. +You should see that the version is `0.13.7`. ### Configuration Settings @@ -276,7 +276,8 @@ 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.13.0 - v0.13.6: +v0.13.0 - v0.13.7: + * Add `enhancement` template #100 * Make scripts executable #82, #95 * Enhancements to `script_run` script: - Option to run with subset of org codes or portal names #65 diff --git a/requiam/__init__.py b/requiam/__init__.py index f7342b58..c77637a6 100644 --- a/requiam/__init__.py +++ b/requiam/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.13.6" +__version__ = "0.13.7" class TimerClass(object): diff --git a/setup.py b/setup.py index d4bef2ee..dd5044e5 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='requiam', - version='v0.13.6', + version='v0.13.7', packages=find_packages('requiam'), url='https://github.com/ualibraries/ReQUIAM', license='MIT License',