Skip to content

Commit a3c0edd

Browse files
committed
adjustments to docs
1 parent e70d4ab commit a3c0edd

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

CONTRIBUTING.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Release Process
2+
3+
We use `python-semantic-release`.
4+
This package will automatically determine the next version number based on the commit messages.
5+
Example commit messages:
6+
7+
**Patch Release (e.g., 0.1.1):**
8+
```
9+
fix: resolve issue with missing argument
10+
```
11+
12+
**Minor Release (e.g., 0.2.0):**
13+
```
14+
feat: add new feature to API
15+
```
16+
17+
**Major Release (e.g., 1.0.0):**
18+
```
19+
feat!: introduce breaking change to architecture
20+
```
21+
The ! after feat indicates a breaking change.
22+
If your commit messages don't match these patterns, python-semantic-release will decide that no release is needed (no_release).

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[![Coverage Status](https://coveralls.io/repos/github/COMPAS-Surrogate/lnl_surrogate/badge.svg?branch=main)](https://coveralls.io/github/COMPAS-Surrogate/lnl_surrogate?branch=main)
2+
[![PyPI version](https://badge.fury.io/py/compas_python_utils.svg?icon=si%3Apython)](https://badge.fury.io/py/compas_python_utils)
3+
4+
15
# Compas Python Utils
26

37
The python utilities for [COMPAS code](github.com/TeamCOMPAS/COMPAS).

0 commit comments

Comments
 (0)