Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.11.1' #70
Browse files Browse the repository at this point in the history
  • Loading branch information
astrochun committed Feb 23, 2021
2 parents 5f979a4 + e188e4d commit b781a85
Show file tree
Hide file tree
Showing 8 changed files with 167 additions and 3 deletions.
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: Bug report
about: Provide specifics about a bug and provide outputted content with any errors
title: 'Bug: ____(provide a descriptive name)'
labels: bug, p1
assignees: ''

---
<!--Fields in **bold** are REQUIRED, fields in *italics* are OPTIONAL -->

**Describe the bug**
<!-- A clear and concise description of what the bug is. -->

**Reproduction Steps**
<!-- Steps to reproduce the behavior -->

**Outputted Messages**
<!-- Provide the full message log if possible or a subset that includes a few lines before the failure -->

**Version information**
<!-- Update with tagged version or branch full name-->
- ReQUIAM_csv version: [e.g. `0.11.0`]
[requirements](https://github.com/ualibraries/ReQUIAM_csv/blob/v<version>/requirements.txt)
[requirements](https://github.com/ualibraries/ReQUIAM_csv/blob/<branch>/requirements.txt)

*Expected behavior*
<!-- A clear and concise description of what you expected to happen. -->

*Screenshots*
<!-- If applicable, add screenshots to help explain your problem. -->

*Additional context*
<!-- Add any other context about the problem here. -->

<!--Branch info-->
**Implemented in**: TBD <!--`feature/feature_name` #(PR No) -->
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Enhancement
about: Provide specifics for a new feature or request
title: 'Enhancement: ____(provide a descriptive name)'
labels: enhancement
assignees: ''

---
<!--Fields in **bold** are REQUIRED, fields in *italics* are OPTIONAL -->

**Summary**
<!--A clear and concise description of what the enhancement is and its scope,
including what motivated it.-->

**Objectives**
<!--List the indicators of success including the expected behavior.-->

**Proposal**
<!--An actual plan of action of how the enhancement will be implemented.-->

*Testing notes*
<!--This is strongly suggested for new features.-->

*Additional notes*
<!--Add any notes about the enhancement here.-->

<!--Branch info-->
**Implemented in**: TBD <!--`feature/feature_name` #(PR No) -->
34 changes: 34 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/bug-pull-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: Bug
about: Provide specifics about a PR for a bug fix
title: 'PR/Bug: ____(provide a descriptive name)'
labels: bug, p1
assignees: ''

---
<!-- IMPORTANT: Please do not create a PR without creating an issue first. -->

<!-- Fields in **bold** are REQUIRED, fields in *italics* are OPTIONAL. -->

**Description**
<!-- A description of how this PR resolved the specified bug-->

<!-- Add any linked issue(s) -->
Fixes #

**Bump version**

v0.xx.x -> v0.xx.x

- [ ] README.md, [installation instructions](../../README.md#installation-instructions)
- [ ] [`setup.py`](../../setup.py)
- [ ] [`requiam_csv/__init__.py`](../../requiam_csv/__init__.py)


*Screenshots or additional context*
<!-- Add any other context about the problem here and/or screenshots to help explain the problem. -->


*Testing (if applicable)*
<!-- Explain how you tested this bug fix so that others can replicate it. -->
<!-- Example: The exact commands you ran and their output. -->
37 changes: 37 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/feature-pull-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: Feature
about: Provide specifics about a PR for a feature
title: 'PR/Feature: ____(provide a descriptive name)'
labels: enhancement
assignees: ''

---
<!-- IMPORTANT: Please do not create a PR without creating an issue first. -->

<!-- Fields in **bold** are REQUIRED, fields in *italics* are OPTIONAL. -->

**Description**
<!-- A description of how this PR addresses the feature/enhancement. -->

<!-- Add any linked issue(s) -->
See #


**ToDo List**

<!-- Add any open questions and Pre-Merge TODOs. Use checkboxes. -->
- [ ] ToDo -->
- [ ] ToDo -->
- [ ] ToDo -->


**Test plan**
<!-- Explain how you tested this feature so that others can replicate it. -->
<!-- Example: The exact commands you ran and their output, screenshots. -->

*Resources*
<!-- Links to blog posts, StackOverflow, libraries or add-ons used to solve this problem. -->


*Screenshots or additional context*
<!-- Add any other context about the problem here and/or screenshots to help explain the problem. -->
29 changes: 29 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/release-pull-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Release
about: Provide specifics about a PR for a release
title: 'PR/Release: ____(provide a descriptive name)'
assignees: ''

---
<!-- IMPORTANT: Please do not create a PR without creating an issue first. -->

<!-- Fields in **bold** are REQUIRED, fields in *italics* are OPTIONAL. -->

**Description**
<!-- A description of the updates contained in this release. Example: -->
<!-- Incorporates Travis CI feature #91, summary for script_run #99, and root portal handling #88 -->

Closes #


**Bump version**

v0.xx.x -> v0.xx.0

- [ ] README.md, [installation instructions](../../README.md#installation-instructions)
- [ ] [`setup.py`](../../setup.py)
- [ ] [`requiam_csv/__init__.py`](../../requiam_csv/__init__.py)


*Screenshots or additional context*
<!-- Add any other context about this release. -->
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ You can confirm installation via `conda list`
(rsh_themes) $ conda list requiam_csv
```

You should see that the version is `0.11.0`.
You should see that the version is `0.11.1`.


### Configuration Settings
Expand Down
2 changes: 1 addition & 1 deletion requiam_csv/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.11.0"
__version__ = "0.11.1"

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='requiam_csv',
version='0.11.0',
version='0.11.1',
packages=['requiam_csv'],
url='https://github.com/ualibraries/ReQUIAM_csv',
license='MIT License',
Expand Down

0 comments on commit b781a85

Please sign in to comment.