From b105a00392ff42b73578e605572e164f5f921a22 Mon Sep 17 00:00:00 2001 From: Arjo Segers Date: Wed, 1 Apr 2026 15:08:47 +0200 Subject: [PATCH 1/2] Defined v2.15. --- CHANGELOG | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3e48756..4f3c782 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -553,21 +553,21 @@ v2.15 ----- Updates for access to Copernicus DataSpace: use STAC API to inquire, and download from S3 buckets. - src/cso/cso_dataspace.py - src/cso/cso_s5p.py - config/tutorial/tutorial.rc - pyproject.toml + src/cso/cso_dataspace.py + src/cso/cso_s5p.py + config/tutorial/tutorial.rc + pyproject.toml Updated documentation. - doc/source/s5p-no2.rst - src/cso/cso_colocate.py - src/cso/cso_file.py - src/cso/cso_gridded.py - src/cso/cso_mapping.py - src/cso/cso_pal.py - src/cso/cso_regions.py - src/cso/cso_superobs.py - src/cso/cso_tools.py - src/cso/cso_viirs.py - src/rc.py - src/utopya/utopya_tools.py + doc/source/s5p-no2.rst + src/cso/cso_colocate.py + src/cso/cso_file.py + src/cso/cso_gridded.py + src/cso/cso_mapping.py + src/cso/cso_pal.py + src/cso/cso_regions.py + src/cso/cso_superobs.py + src/cso/cso_tools.py + src/cso/cso_viirs.py + src/rc.py + src/utopya/utopya_tools.py -- GitLab From 77c735579b5e980605ec661c6347f62ec7b98a9d Mon Sep 17 00:00:00 2001 From: Arjo Segers Date: Wed, 1 Apr 2026 15:14:20 +0200 Subject: [PATCH 2/2] Updated documentation. --- doc/source/history.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/source/history.rst b/doc/source/history.rst index 4914449..6db1398 100644 --- a/doc/source/history.rst +++ b/doc/source/history.rst @@ -122,7 +122,7 @@ A summary of the versions and changes. * | *v2.13* | Minor updates to trap errors and support latest Python versions. -* | *v2.14* +* | *v2.15* | Plot pixels als polygons in case track information is not present. * | *v2.15* @@ -160,7 +160,7 @@ A wishlist of developments. How to create a version tag =========================== -Example for tag "v2.14". +Example for tag "v2.15". 1. Update file formatting following conventions. @@ -184,13 +184,13 @@ Example for tag "v2.14". d. Commit and push these changes:: - git commit -m 'Defined v2.14' . + git commit -m 'Defined v2.15' . git push 4. Tag and push the code to the git repository:: - git tag -a 'v2.14' -m 'Tagged v2.14' - git push origin v2.14 + git tag -a 'v2.15' -m 'Tagged v2.15' + git push origin 'v2.15' -- GitLab