diff options
author | Nick Gerace <nickagerace@gmail.com> | 2020-11-11 23:23:08 -0500 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2020-11-11 23:28:28 -0500 |
commit | 85ab670ed4e4bf75d618f45c8572156f3e39cb3d (patch) | |
tree | a217b22b672b1eee36114bfd17a0c17ff2fd56d0 | |
parent | b369dbff916f5d27a42044f74d92cd84ed5a16af (diff) | |
download | gfold-85ab670ed4e4bf75d618f45c8572156f3e39cb3d.zip |
Add post release process and contributing info
Add post release process, which includes GitHub releases, crates.io,
and Homebrew. Add contributing information for PRs and issues.
-rw-r--r-- | Makefile | 10 | ||||
-rw-r--r-- | README.md | 9 |
2 files changed, 18 insertions, 1 deletions
@@ -37,9 +37,10 @@ pre-build: doc: cd $(MAKEPATH); cargo doc --open -tag: +tag-release: cd $(MAKEPATH); git tag $(VERSION) cd $(MAKEPATH); git push --tags origin main + cd $(MAKEPATH); cargo publish fixme: @cd $(MAKEPATH); grep -r \ @@ -61,3 +62,10 @@ release: @printf "[4] Before merging, ensure that publishing works.\n" @printf " cargo publish --dry-run\n" +post-release: + @printf "[1] Run the following command...\n" + @printf " time make tag-release\n" + @printf "[2] Edit the GitHub release page for the new release.\n" + @printf "[3] Check crates.io: https://crates.io/crates/gfold\n" + @printf "[4] Update Homebrew tap version: https://github.com/nickgerace/homebrew-gfold\n" + @@ -133,6 +133,15 @@ It is tested for the latest versions of the following systems, but may work on m - **macOS**: `macos-amd64`
- **Windows 10**: `windows-amd64`
+## Issues, Pull Requests, and Contributing
+
+Please follow the issue template when filing an issue.
+If making a pull request, the requirements for merging are...
+
+1. An issue must be linked, whether it is a new one or an existing one.
+2. The pull request branch needs to be rebased with `nickgerace/gfold` on `main`.
+3. Pull request commits need to be squashed (there may be exceptions to this on a case-by-case basis).
+
## Changelog
Please check out [CHANGELOG.md](./CHANGELOG.md) for more information.
|