Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Latest commit

 

History

History
75 lines (52 loc) · 3.15 KB

CONTRIBUTING.md

File metadata and controls

75 lines (52 loc) · 3.15 KB

Welcome!

We are looking forward to changes and improvement to this package. Before you contribute, please read the Code of Conduct.

Repository structure

  • src contains all the functions, types, and methods
  • tests contains the unit tests and some integration tests

Don't know where to start?

  • report a bug or suggest an improvement -- open an issue on GitHub
  • write a vignette -- used SimpleSDMLayers.jl to do something? You can add it to docs/src/examples!
  • improve the documentation -- all functions have a docstring where they are declared, and improving them is a great way to get started

Setting up your environment

Have a look at the current Julia documentation.

Workflow

This section describes the general steps to make sure that your contribution is integrated rapidly. The general workflow is as follows:

  1. Before you do anything, open an issue -- this is where we discuss the potential changes to the package
  2. Fork the repository (see Branches, etc. below)
  3. Create an explicitly named branch from next (if present) or main
  4. Create a pull request as soon as you make the first commit
  5. Be as explicit as possible on your goals
  6. Do not squash / rebase commits while you work -- we will do so when merging

Pull requests

Creating a pull request before you push any code will signal that you are interested in contributing to the project. Once this is done, push often, and be explicit about what the commits do (see commits, below). This gives the opportunity for feedback during your work, and allow for tweaks in what you are doing.

A good pull request (in addition to satisfying to all of the criteria below) is:

  1. Single purpose - it should do one thing, and one thing only
  2. Short - it should ideally involve less than 250 lines of code
  3. Limited in scope - it should ideally not span more than a handful of files
  4. Well tested and well documented
  5. Written in a style similar to the rest of the codebase

This will ensure that your contribution is rapidly reviewed and evaluated.

Branches, etc.

The tagged versions of anything on main are stable releases. The main branch itself is the latest version, but it must always work (after the first tagged release). For more intensive development, use the next branch, or feature-specific branches. All significant branches are under continuous integration and code coverage analysis.

Versioning

We use semantic versioning (major.minor.patch). Anything that adds no new feature should increase the patch number, new non-API-breaking changes should increase minor, and major changes should increase major. Any increase of a higher level resets the number after it (e.g, 0.3.1 becomes 1.0.0 for the first major release). It is highly recommended that you do not start working on API-breaking changes without having received a go from us first.