diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..79715240 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,26 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: 'bug' +assignees: '' + +--- + +**Describe the bug** + + +**To Reproduce** + + +**Expected behavior** + + +**Build environment** + - Tag/commit: + - OS+version: + - Rust/Cargo version: + - Rust/Cargo target: + +**Additional context** + diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.md b/.github/ISSUE_TEMPLATE/enhancement_request.md new file mode 100644 index 00000000..d12479a4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement_request.md @@ -0,0 +1,17 @@ +--- +name: Enhancement request +about: Request a new feature or change to an existing feature +title: '' +labels: 'enhancement' +assignees: '' + +--- + +**Describe the enhancement** + + +**Use case** + + +**Additional context** + diff --git a/.github/ISSUE_TEMPLATE/release.md b/.github/ISSUE_TEMPLATE/release.md new file mode 100644 index 00000000..cf6619ee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/release.md @@ -0,0 +1,18 @@ +--- +name: Release +about: Create a new release [for release managers only] +title: 'Release MAJOR.MINOR.PATCH' +labels: 'release' +assignee +--- + +**Steps** + +- [ ] Update the Kyoto version contained in the User Agent of the P2P Version message. +- [ ] Update the changelog with the recent commit history. +- [ ] Check the documentation for errors using `cargo +nightly doc --open` +- [ ] Increase the version number in `Cargo.toml` according to semver +- [ ] Attempt a publish dry-run using `cargo publish --dry-run` +- [ ] Create a pull request and ensure all tests pass +- [ ] Merge the pull request and publish from `master` +