From ab002ebcd732b2df9ac52d5160484bd4d649ccef Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Mon, 13 Nov 2017 19:28:22 +0200 Subject: [PATCH] Kinda have copied the whole Contributing file from gnome-TODO. --- CONTRIBUTING.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ meson.build | 2 +- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 18fe44d..6934194 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,5 @@ +> Adapted from Gnome-TODO +> https://gitlab.gnome.org/GNOME/gnome-todo/blob/582f9a57b84f92dc629b2042b887188878578cdb/CONTRIBUTING.md ## Contributing Contributing @@ -22,6 +24,50 @@ It is recommended to add a pre-commit hook to run cargo test and cargo fmt cargo test --all && cargo fmt --all -- --write-mode=diff ``` +# Issues, issues and more issues! + +There are many ways you can contribute to Hammond, and all of them involve creating issues +in [Hammond issue tracker](https://gitlab.gnome.org/alatiera/Hammond/issues). This is the +entry point for your contribution. + +To create an effective and high quality ticket, try to put the following information on your +ticket: + + 1. A detailed description of the issue or feature request + - For issues, please add the necessary steps to reproduce the issue. + - For feature requests, add a detailed description of your proposal. + 2. A checklist of Development tasks + 3. A checklist of Design tasks + 4. A checklist of QA tasks + +## Issue template +``` +[Title of the issue or feature request] + +Detailed description of the issue. Put as much information as you can, potentially +with images showing the issue or mockups of the proposed feature. + +If it's an issue, add the steps to reproduce like this: + +Steps to reproduce: + +1. Open Hammond +2. Do an Action +3. ... + +## Design Tasks + +* [ ] design tasks + +## Development Tasks + +* [ ] development tasks + +## QA Tasks + +* [ ] qa (quality assurance) tasks +``` + ## Pull Request Process 1. Ensure your code compiles. Run `make` before creating the pull request. diff --git a/meson.build b/meson.build index 3d2cf44..118e656 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'hammond', 'rust', - version: '0.1.0', + version: '0.1.1', license: 'GPLv3', )