TNO Intern

Skip to content
Commits on Source (2)
......@@ -22,7 +22,7 @@ copyright = '2020-2023, Arjo Segers'
author = 'Arjo Segers'
# The full version, including alpha/beta/rc tags
release = 'v2.6'
release = 'v2.6.1'
# -- General configuration ---------------------------------------------------
......
......@@ -91,7 +91,7 @@ A summary of the versions and changes.
| Support new Copernicus *DataSpace* portal to download Sentinel data.
| *(2023-11)*
* | *v2.6*
* | *v2.6.1*
| Support SO\ :sub:`2` COBRA product from PAL website.
| *(2024-01)*
......@@ -135,24 +135,30 @@ A wishlist of developments.
How to create a version tag
===========================
Example for tag "v2.4".
Example for tag "v2.6.1".
1. Update the source file `doc/source/history.rst <../../source/history.rst>`_ of this chapter.
1. Ensure that all changes are committed and pushed::
2. Change the release tag that will be shown in the documentation in the file
git status
git commit -m 'Recent updates.' .
git push
2. Update the source file `doc/source/history.rst <../../source/history.rst>`_ of this chapter.
3. Change the release tag that will be shown in the documentation in the file
`doc/source/conf.py <../../source/conf.py>`_::
# The full version, including alpha/beta/rc tags
release = "v2.4"
release = "v2.6.1"
3. Commit these changes::
4. Commit these changes::
git commit -m 'Tagged v2.4 .' doc/source/history.rst doc/source/conf.py
git commit -m 'Tagged v2.6.1 .' doc/source/history.rst doc/source/conf.py
4. Tag and push the code to the git repository::
5. Tag and push the code to the git repository::
git tag -a 'v2.4' -m 'Tagged v2.4'
git push origin v2.4
git tag -a 'v2.6.1' -m 'Tagged v2.6.1'
git push origin 'v2.6.1'
......@@ -31,7 +31,6 @@ Contents
tutorial
s5p-no2
s5p-no2-superobs
s5p-so2
s5p-so2-cobra
s5p-hcho
......
.. Documentation for module.
.. Import documentation from ".py" file:
.. automodule:: cso_s5p_superobs
This diff is collapsed.
......@@ -39,7 +39,6 @@ Actual implementations can be found in submodules:
pymod-cso_dataspace
pymod-cso_pal
pymod-cso_s5p
pymod-cso_s5p_superobs
pymod-cso_gridded
pymod-cso_colocate
pymod-cso_superobs
......@@ -115,7 +114,6 @@ from cso_inquire import *
from cso_dataspace import *
from cso_pal import *
from cso_s5p import *
from cso_s5p_superobs import *
from cso_gridded import *
from cso_colocate import *
from cso_superobs import *
......
This diff is collapsed.