TNO Intern

Commit cc7d5faf authored by Arjo Segers's avatar Arjo Segers
Browse files

Defined v2.10

parent bdfab4b2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -466,11 +466,13 @@ Increased maximum number of records and introduced sort order to avoid that
search request return a different result when repeated.
  py/cso_dataspace.py

colhub branch
~~~~~~~~~~~~~

v2.10
-----

Support inquiry and use of ColHub mirror archive.
  py/cso_colhub.py
	py/cso_file.py
	py/cso_s5p.py
  py/cso.py
+2 −2
Original line number Diff line number Diff line
@@ -19,11 +19,11 @@ sys.path.insert(0, os.path.abspath(os.path.join(os.pardir, os.pardir, "py")))
# -- Project information -----------------------------------------------------

project = "CSO"
copyright = "2020-2024, Arjo Segers"
copyright = "2020-2025, Arjo Segers"
author = "Arjo Segers"

# The full version, including alpha/beta/rc tags
release = "v2.9"
release = "v2.10"


# -- General configuration ---------------------------------------------------
+6 −6
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ A summary of the versions and changes.
* | *v2.9*
  | Initial support for S5P O3-profile product.
  
* | *colhub branch*
* | *v2.10*
  | Support inquiry of ColHub mirror archive.


@@ -153,7 +153,7 @@ A wishlist of developments.
How to create a version tag
===========================

Example for tag "v2.9".
Example for tag "v2.10".

1. Update file formatting following conventions.

@@ -175,17 +175,17 @@ Example for tag "v2.9".
      `doc/source/conf.py <../../source/conf.py>`_::

        # The full version, including alpha/beta/rc tags
        release = "v2.9"
        release = "v2.10"
    
   d. Commit and push these changes::

       git commit -m 'Defined v2.9' .
       git commit -m 'Defined v2.10' .
       git push

4. Tag and push the code to the git repository::

      git tag -a 'v2.9' -m 'Tagged v2.9'
      git push origin v2.9
      git tag -a 'v2.10' -m 'Tagged v2.10'
      git push origin v2.10