File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 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).
Original file line number Diff line number Diff line change 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
37The python utilities for [ COMPAS code] ( github.com/TeamCOMPAS/COMPAS ) .
You can’t perform that action at this time.
0 commit comments