From 3f56562b512278583f9413a43fe7157e6459a05b Mon Sep 17 00:00:00 2001 From: Arjo Segers Date: Thu, 7 May 2026 14:46:19 +0200 Subject: [PATCH] Defined v2.17 --- CHANGELOG | 7 +++++++ doc/source/history.rst | 14 +++++++++----- pyproject.toml | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ea3df7e..78cdbe4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -593,3 +593,10 @@ Option to initialize empty listing with extra columns. src/cso/cso_file.py src/cso/cso_colhub.py +Select input file with latest processor version or production time if multiple are selected. +Convert multiple files if orbit is stored in patches. Check on duplicate output files. + src/cso/cso_colhub.py + src/cso/cso_dataspace.py + src/cso/cso_file.py + src/cso/cso_s5p.py + config/tutorial/tutorial.rc diff --git a/doc/source/history.rst b/doc/source/history.rst index 0cc2e5d..994a0ba 100644 --- a/doc/source/history.rst +++ b/doc/source/history.rst @@ -133,6 +133,10 @@ A summary of the versions and changes. | Removed support for SO\ :sub:`2` COBRA product as this has become operational. | *(2026-04)* +* | *v2.17* + | Select input file with latest processor version or production time if multiple are selected. + | Convert multiple files if orbit is stored in patches. Check on duplicate output files. + | *(2026-05)* To be done ========== @@ -165,7 +169,7 @@ A wishlist of developments. How to create a version tag =========================== -Example for tag "v2.16". +Example for tag "v2.17". 1. Update file formatting following conventions. @@ -185,17 +189,17 @@ Example for tag "v2.16". c. Change the release tag that will also be imported to the documenation in the `pyproject.toml <../../../pyproject.toml>`_ file:: - release = "2.16" + release = "2.17" d. Commit and push these changes:: - git commit -m 'Defined v2.16' . + git commit -m 'Defined v2.17' . git push 4. Tag and push the code to the git repository:: - git tag -a 'v2.16' -m 'Tagged v2.16' - git push origin 'v2.16' + git tag -a 'v2.17' -m 'Tagged v2.17' + git push origin 'v2.17' diff --git a/pyproject.toml b/pyproject.toml index a44cdde..e76f645 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "cso" -version = "2.16" +version = "2.17" authors = [ { name = "Arjo Segers" }, { name = "Lewis Blake" }, -- GitLab