TNO Intern

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

Defined v2.11

parent 84532217
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -476,3 +476,26 @@ Support inquiry and use of ColHub mirror archive.
	py/cso_s5p.py
  py/cso.py


v2.11
-----

Support scanning of multiple archive directories.
	py/cso_colhub.py

Improved re-try loop when downloading from PAL.
	py/cso_pal.py

Support user defined directory creation mode.
	py/cso_file.py
	py/cso_colhub.py
	py/cso_dataspace.py
	py/cso_s5p.py

Support inquiry and download from NASA EarthData.
	py/cso_earthaccess.py
	py/cso.py
	py/cso_inquire.py
	doc/source/pymods.rst
	doc/source/pymod-cso_earthaccess.rst
	doc/source/portals.rst
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ copyright = "2020-2025, Arjo Segers"
author = "Arjo Segers"

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


# -- General configuration ---------------------------------------------------
+8 −5
Original line number Diff line number Diff line
@@ -113,6 +113,9 @@ A summary of the versions and changes.
* | *v2.10*
  | Support inquiry of ColHub mirror archive.
  
* | *v2.11*
  | Support inquiry and download from NASA EarthData archive.


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

Example for tag "v2.10".
Example for tag "v2.11".

1. Update file formatting following conventions.

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

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

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

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

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