Skip to content

Commit

Permalink
Merge pull request #79 from nautobot/release-0.3.0
Browse files Browse the repository at this point in the history
Release 0.3.0
  • Loading branch information
Kircheneer authored Mar 11, 2024
2 parents e747eaa + 3d493e2 commit a42a566
Show file tree
Hide file tree
Showing 67 changed files with 2,625 additions and 2,900 deletions.
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"project_name": "Pylint Nautobot",
"project_slug": "pylint-nautobot",
"project_python_name": "pylint_nautobot",
"project_python_base_version": "3.7",
"project_python_base_version": "3.8",
"project_with_config_settings": "yes",
"generate_docs": "no",
"version": "0.1.0",
Expand Down
3 changes: 0 additions & 3 deletions .env.example

This file was deleted.

9 changes: 5 additions & 4 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[flake8]
# E501: Line length is enforced by Black, so flake8 doesn't need to check it
# W503: Black disagrees with this rule, as does PEP 8; Black wins
ignore = E501, W503
exclude =
ignore =
E501, # Line length is enforced by Black, so flake8 doesn't need to check it
W503 # Black disagrees with this rule, as does PEP 8; Black wins
exclude =
__pycache__,
.venv,
tests/inputs
var
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Default owner(s) of all files in this repository
* @cmsirbu @Kircheneer @nautobot/maintain-core
* @cmsirbu @Kircheneer @nautobot/maintain-nautobot-apps
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ about: Report a reproducible bug in the current release of pylint-nautobot
---

### Environment
* Python version: <!-- Example: 3.7.7 -->
* Python version: <!-- Example: 3.11.4 -->
* Nautobot version: <!-- Example: 2.0.0 -->
* pylint-nautobot version: <!-- Example: 1.0.0 -->

<!-- What did you expect to happen? -->
Expand All @@ -21,4 +22,4 @@ about: Report a reproducible bug in the current release of pylint-nautobot
### Steps to Reproduce
1.
2.
3.
3.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ about: Propose a new feature or enhancement
---

### Environment
* Nautobot version: <!-- Example: 2.0.0 -->
* pylint-nautobot version: <!-- Example: 1.0.0 -->

<!--
Expand Down
38 changes: 31 additions & 7 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,34 @@
## New Pull Request
<!--
Thank you for your interest in contributing to pylint-nautobot! Please note
that our contribution policy recommends that a feature request or bug
report be opened for approval prior to filing a pull request. This
helps avoid wasting time and effort on something that we might not
be able to accept.
Have you:
- [ ] Updated the README if necessary?
- [ ] Updated any configuration settings?
- [ ] Written a unit test?
Please indicate the relevant feature request or bug report below.
-->

## Change Notes
# Closes: #<ISSUE NUMBER GOES HERE>

## Justification
## What's Changed

<!--
Please include:
- A summary of the proposed changes
- A sectioned breakdown for larger features under ## subheadings
- Screenshots, example payloads where relevant:
- Before/After for bugfixes
- Using a new feature
-->

## To Do

<!--
Please feel free to update todos to keep track of your own notes for WIP PRs.
-->
- [ ] Explanation of Change(s)
- [ ] Attached Screenshots, Payload Example
- [ ] Unit, Integration Tests
- [ ] Documentation Updates (when adding/changing features)
- [ ] Example App Updates (when adding/changing features)
- [ ] Outline Remaining Work, Constraints from Design
Loading

0 comments on commit a42a566

Please sign in to comment.