Thank you for your interest in this project!
We use GitHub Issues for trackings issues and features. You can make a contribution by:
- Reporting an issue or making a feature request here.
- Contributing code to this project by fixing an issue or adding a new feature (see below).
Before contributing a new feature, please discuss its suitability with the project maintainers in an issue first. Thanks!
- Fork and git clone the-reop.
- Create a new git branch from the master branch where you develop your changes.
- Create a Pull Request for your contribution by following the instructions in the pull request template.
- Perform a code review with the project maintainers on the pull request. We may suggest changes, improvements or alternatives.
- Once approved, your code will be merged into
master
and your name will be included inAUTHORS
.
Pull requests have to meet the following requirements:
-
Documentation: Pull requests need to update the documentation together with the code change.
-
Commits: Commits should be as small as possible while ensuring that each commit compiles and passes tests independently. Write good commit messages. If needed, squash your commits prior to submission.
This repo uses semantic release when a pull request is merged. You will need to include a prefix
Here is an example of the release type that will be done based on a commit messages:
Commit message | Release type |
---|---|
fix(pencil): stop graphite breaking when too much pressure applied |
Patch Release |
feat(pencil): add 'graphiteWidth' option |
|
perf(pencil): remove graphiteWidth option BREAKING CHANGE: The graphiteWidth option has been removed. The default graphite width of 10mm is always used for performance reasons. |