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

Latest commit

 

History

History
45 lines (35 loc) · 2.88 KB

CONTRIBUTING.md

File metadata and controls

45 lines (35 loc) · 2.88 KB

Thanks for considering to contribute to this project! 👍

About

This document shall give you some guidelines in order to help you to contribute to this project. It shall help the project contributors to work on common grounds. Contributions shall underlie as few restrictions as necessary in order to leverage productivity.

General

Coding Rules

Before committing to this repository, please:

Versioning

Versions in this project shall be specified according to the Semantic Versioning 2 specification (SemVer2). Additional rules specify details of the usage.

Tags which point to defined versions shall use the version name prefixed with a v as this is common practice on GitHub.

Development releases

A development release is defined as a release, which is only on a branch, which is not the normal release branch. A development release aims to be included within the normal release branch after development is completed. The normal release branch is master. The following rule does specify how to name versions in development releases using Backus–Naur form:

<version>   ::= <X>"."<Y>"."<Z>"-0.develop+"<dev-id>
<X>         ::= <X'> | <X'>+1
<X'>        ::= mayjor version of the normal release this development is based on
<Y>         ::= <Y'> | <Y'>+1
<Y'>        ::= minor version of the normal release this development is based on
<Z>         ::= <Z'> | <Z'>+1
<Z'>        ::= patch version of the normal release this development is based on
<dev-id>    ::= <branch>"."<commits>"."<object>
<branch>    ::= branch name
<commits>   ::= number of additional commits on top of the normal release this development is based on
<object>    ::= abbreviated object name of the most recent commit

The major, minor or patch number are incremented according to SemVer2. Exactly one of major, minor or patch number must be incremented. The branch name must satisfy the requirements for pre-release version identifiers of SemVer2. Slashes (/) in branch names must be replaced with hyphens (-). The abbreviated object name of the most recent commit may be a tag, a revision number or a hash.

The following is a valid example of a version tag: v6.6.5-0.develop+feature-update-notification.1.gf934dc7