Places where the version has to be updated:
- ./setup.py
- ./pyssianutils/pyssian-*.py
Notes:
Bugfixes -> version += 0.0.1 Non-breaking updates -> version += 0.1.0 (resets minor) Major updates/breaking API updates -> version += 1.0.0 (resets minor and middle)
To build the docs for publication go to the docs folder where you have the source code then run:
$ cd sphinx/
$ python -m pip install -r requirements.txt
$ make github
To build locally previous to release:
$ cd sphinx/
$ python -m pip install -r requirements.txt
$ make html
Now if you go to the _docs/html folder you can open the index.html file in your folder and navigate through the documentation easily.
$ # Go to where the pyproject.toml file is.
$ python -m build
$ # The distribution should be at the dist/ folder.
TODO