Managing version numbers
To assign meaning to the version number, we use semantic versioning. Technically we use the package versioneer to increment the version number. To update the version number, run the following commands:
git checkout main
git tag -a v1.2.3 -m "mapreader-1.2.3"
git push --tags
All intermediate development version numbers are automatically generated by versioneer.