Skip to content

Versioning

marek edited this page Aug 30, 2025 · 2 revisions

Versioning

This page describes how versioning is used.

Branches

All development must be done on feature branches. These start with string feat- followed by the title of the issue associated with them. For example, for issue https://github.com/kerrambit/MolStarApp/issues/1, the feature branch will be named feat-1-general---create-github-action-workflows.

After development is finished (and CI looks good), a Pull Request is created. All feature branches must be merged into dev branch. This branch is being used between releases. Additionally, after the feature branch is successfully merged, it should be deleted (both locally and in the origin).

Releases should be done only on main branch.

Clone this wiki locally