Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Issue Templates #786

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: 🐞 Bug
description: >
A bug is an issue that differs from documentation or has unexpected behavior.
title: "[BUG] {{ title }}"
labels:
- Bug
- Needs Triage
body:
- type: checkboxes
attributes:
label: Is this issue already tracked somewhere, or is this a new report?
description: Check if a similar issue has already been reported before submitting a new one.
options:
- label: I've reviewed existing issues and couldn't find a duplicate for this problem.
required: true

- type: textarea
attributes:
label: Current Behavior
description: A concise description of what you're experiencing.
validations:
required: true

- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: true

- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. In this environment...
2. With this config...
3. Run '...'
4. See error...
validations:
required: true

- type: textarea
attributes:
label: Environment
description: |
Examples:
- **OS**: Ubuntu 20.04
- **Python**: 3.11.2
value: |
- OS:
- Python:
render: markdown
validations:
required: true

- type: textarea
attributes:
label: Additional Context
description: |
Any additional information that might be helpful in resolving this issue, such as:
- Error messages or stack traces
- Relevant configuration files or code snippets

Tip: You can attach files or images by clicking this area to highlight it and then dragging files in.
validations:
required: false
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/community-support.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 🌟 Community Support
description: General questions, discussions, or topics. Not for bugs/errors (use Bug category). Need guidance on features, concepts, or have questions?
body:
- type: markdown
attributes:
value: |
For community-driven support and discussion, please visit our [Q&A page](https://github.com/nsidc/earthaccess/discussions/categories/q-a).
- type: textarea
attributes:
label: Describe your question or topic
description: Please provide as much detail as possible
placeholder: Start typing...
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/suggest-new-feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 💡 Suggest a new feature
description: Have an idea for a new feature or enhancement? Share it with us!
body:
- type: markdown
attributes:
value: |
To suggest a new feature, please visit our [Ideas discussion board](https://github.com/nsidc/earthaccess/discussions/new?category=ideas) and share your idea with us!
- type: textarea
attributes:
label: Describe your idea
description: Please provide as much detail as possible
placeholder: Start typing...
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [v0.10.0] 2024-07-19

### Changed

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ keywords:
url: "https://earthaccess.readthedocs.io"
repository-code: "https://github.com/nsidc/earthaccess"

version: "0.9.0"
date-released: "2024-02-28"
version: "0.10.0"
date-released: "2024-07-19"

authors:
- family-names: "Barrett"
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "earthaccess"
version = "0.9.0"
version = "0.10.0"
repository = "https://github.com/nsidc/earthaccess"
documentation = "https://earthaccess.readthedocs.io"
description = "Client library for NASA Earthdata APIs"
Expand Down Expand Up @@ -155,9 +155,10 @@ convention = "google"
combine-as-imports = true

[tool.bumpversion]
current_version = "0.9.0"
current_version = "0.10.0"
commit = false
tag = false
regex = true

[[tool.bumpversion.files]]
filename = "pyproject.toml"
Expand Down