From 3d6199870db1da3e5ae63e216ef884abad88699e Mon Sep 17 00:00:00 2001 From: Martin Springer <97482055+martin-springer@users.noreply.github.com> Date: Fri, 9 Feb 2024 13:55:07 -0500 Subject: [PATCH] Development (#65) * add release notes --- .github/pull_request_template.md | 26 ++++++++++++++++++++++++ docs/source/whatsnew/index.rst | 4 ++-- docs/source/whatsnew/releases/v0.2.3.rst | 17 ++++++++++++++++ 3 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 .github/pull_request_template.md create mode 100644 docs/source/whatsnew/releases/v0.2.3.rst diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..8a782f96 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,26 @@ +## Describe your changes + +Please include a summary of the changes and the related issue. Please also include relevant motivation and context. List any dependencies that are required for this change. + +## Issue ticket number and link + +Fixes # (issue) + +## Type of change + +Please delete options that are not relevant. + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) +- [ ] This change requires a documentation update + +## Checklist before requesting a review + +- [ ] I have performed a self-review of my code +- [ ] Code changes are covered by tests. +- [ ] Code changes have been evaluated for compatibility/integration with Scenario analysis (for future PRs) +- [ ] New functions added to __init__.py +- [ ] API.rst is up to date, along with other sphinx docs pages +- [ ] Example notebooks are rerun and differences in results scrutinized +- [ ] What's new changelog has been updated in the docs diff --git a/docs/source/whatsnew/index.rst b/docs/source/whatsnew/index.rst index 8ea62953..fb42016f 100644 --- a/docs/source/whatsnew/index.rst +++ b/docs/source/whatsnew/index.rst @@ -2,9 +2,9 @@ What's New ========== +PVDegradationTools (pvdeg) change log: -pvdeg change log - +.. include:: releases/v0.2.3.rst .. include:: releases/v0.2.2.rst .. include:: releases/v0.2.1.rst .. include:: releases/v0.2.0.rst diff --git a/docs/source/whatsnew/releases/v0.2.3.rst b/docs/source/whatsnew/releases/v0.2.3.rst new file mode 100644 index 00000000..68b05cf3 --- /dev/null +++ b/docs/source/whatsnew/releases/v0.2.3.rst @@ -0,0 +1,17 @@ +v0.2.3 (2024-02-09) +======================= + +Enhancements +------------ +* refactor of the standoff calculation +* refactor to wind_speed height instead of wind_speed factor +* updates to standoff calculation notebooks +* updates to documentation +* include issue and pull request templates + + +Contributors +~~~~~~~~~~~~ +* Mike Kempe (:ghuser:`MDKempe`) +* Tobin Ford (:ghuser:`tobin-ford`) +* Martin Springer (:ghuser:`martin-springer`)