Skip to content
Snippets Groups Projects
Commit f563e833 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Adding bumpver info

parent aff6c387
No related branches found
No related tags found
No related merge requests found
...@@ -31,5 +31,17 @@ To run the unit tests, move to the root folder of the project, and execute: ...@@ -31,5 +31,17 @@ To run the unit tests, move to the root folder of the project, and execute:
pytest -v pytest -v
``` ```
### Using bumpver
For developers: When you want to publish a new version, use
``` bash
# Increment the PATCH version when you make backwards compatible bug fixes.
bumpver update --patch
# Increment the MINOR version when you add functionality in a backwards compatible manner.
bumpver update --minor
# Increment the MAJOR version when you make incompatible API changes.
bumpver update --major
```
[(Source)](https://semver.org/#summary)
## References ## References
We used this excellent guide for packaging: https://realpython.com/pypi-publish-python-package/ We used this excellent guide for packaging: https://realpython.com/pypi-publish-python-package/
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment