From d524b0add264dfd4af461ea0b146a92cac357e9d Mon Sep 17 00:00:00 2001 From: Jimmy Byrd Date: Sun, 16 Jul 2023 15:12:35 -0400 Subject: [PATCH] Add CONTRIBUTING file --- CONTRIBUTING.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..c6d2763b5 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,14 @@ +# Contributing + + +## Release + +1. Update version in CHANGELOG.md and add notes + 1. If possible link the pull request of the changes and mention the author of the pull request +2. Create new commit + 1. `git add CHANGELOG.md` + 1. `git commit -m "changelog for v0.45.0"` +3. Make a new version tag (for example, `v0.45.0`) + 1. `git tag v0.45.0` +4. Push changes to the repo. + 1. `git push --atomic [insert-remote-branch] main v0.45.0`