From 7190c71ba7fb2efa9a4dde07cf617f1ebff2c4f3 Mon Sep 17 00:00:00 2001 From: Francis Charette-Migneault Date: Mon, 8 Sep 2025 22:07:08 -0400 Subject: [PATCH 1/4] Update pyproject.toml bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 096a36a..8652fc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ minversion = "6.0" #addopts = "-ra -s" [tool.bumpversion] -current_version = "1.3.0" +current_version = "0.1.3" parse = """(?x) (?P0|[1-9]\\d*)\\. (?P0|[1-9]\\d*)\\. From 7b471cc119a23ba44a5fec8ce1ff0dfae58056c4 Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Wed, 10 Sep 2025 00:21:42 -0400 Subject: [PATCH 2/4] align version in OpenAPI schema to align with rest of code --- pydggsapi/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pydggsapi/api.py b/pydggsapi/api.py index ee2cc4a..0238926 100644 --- a/pydggsapi/api.py +++ b/pydggsapi/api.py @@ -44,13 +44,13 @@ def my_schema(): openapi_schema = get_openapi( title="pydggsapi: A python FastAPI OGC DGGS API implementation", - version="1.3.0", + version="0.1.3", routes=app.routes ) openapi_schema["info"] = { "title" : "pydggsapi: A python FastAPI OGC DGGS API implementation", - "version" : "1.3.0", + "version" : "0.1.3", "description" : "A python FastAPI OGC DGGS API implementation", "termsOfService": "https://creativecommons.org/licenses/by/4.0/", "contact": { From fbc2659faf1d962e5e066e502001d4cb35d833f1 Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Wed, 10 Sep 2025 00:23:33 -0400 Subject: [PATCH 3/4] update README tag version to align with code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 034a912..f16a098 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # pydggsapi -![Version](https://img.shields.io/badge/version-1.3.0-blue) +![Version](https://img.shields.io/badge/version-0.1.3-blue) A python FastAPI OGC DGGS API implementation From 1d23b11939f765d13aad6629257ac77e06d7ec01 Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Wed, 10 Sep 2025 03:01:19 -0400 Subject: [PATCH 4/4] =?UTF-8?q?Bump=20version:=200.1.3=20=E2=86=92=200.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CITATION.cff | 2 +- README.md | 2 +- docker/Dockerfile | 2 +- docs/source/conf.py | 4 ++-- pydggsapi/api.py | 4 ++-- pyproject.toml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index c2dd9d1..ce31496 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,7 +8,7 @@ authors: given-names: "Alexander" orcid: https://orcid.org/0000-0003-4386-4450 title: "pydggsapi: A python FastAPI OGC DGGS API implementation" -version: "0.1.3" +version: "0.1.4" doi: none date-released: 2025-03-01 url: "https://github.com/LandscapeGeoinformatics/pydggsapi/" diff --git a/README.md b/README.md index f16a098..31382e2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # pydggsapi -![Version](https://img.shields.io/badge/version-0.1.3-blue) +![Version](https://img.shields.io/badge/version-0.1.4-blue) A python FastAPI OGC DGGS API implementation diff --git a/docker/Dockerfile b/docker/Dockerfile index df494d5..9fda2e6 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ LABEL description.short="DGGS API" LABEL description.long="OGC API for DGGS (Discretized Global Grid System) data management and processing." LABEL maintainer="Francis Charette-Migneault " LABEL vendor="CRIM" -LABEL version="0.1.3" +LABEL version="0.1.4" ARG DGGRID_VERSION=8.41 diff --git a/docs/source/conf.py b/docs/source/conf.py index b4a37aa..b81d76f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,8 +15,8 @@ author = 'Wai Tik Chan, Alexander Kmoch' release = '2025' -release = '0.1.3' -version = '0.1.3' +release = '0.1.4' +version = '0.1.4' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pydggsapi/api.py b/pydggsapi/api.py index 0238926..c70ae67 100644 --- a/pydggsapi/api.py +++ b/pydggsapi/api.py @@ -44,13 +44,13 @@ def my_schema(): openapi_schema = get_openapi( title="pydggsapi: A python FastAPI OGC DGGS API implementation", - version="0.1.3", + version="0.1.4", routes=app.routes ) openapi_schema["info"] = { "title" : "pydggsapi: A python FastAPI OGC DGGS API implementation", - "version" : "0.1.3", + "version" : "0.1.4", "description" : "A python FastAPI OGC DGGS API implementation", "termsOfService": "https://creativecommons.org/licenses/by/4.0/", "contact": { diff --git a/pyproject.toml b/pyproject.toml index 8652fc6..00c9941 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "pydggsapi" [project] name = "pydggsapi" -version = "0.1.3" +version = "0.1.4" description = "A python FastAPI OGC DGGS API implementation" license = "Apache-2.0" license-files = ["LICENSE"] @@ -57,7 +57,7 @@ minversion = "6.0" #addopts = "-ra -s" [tool.bumpversion] -current_version = "0.1.3" +current_version = "0.1.4" parse = """(?x) (?P0|[1-9]\\d*)\\. (?P0|[1-9]\\d*)\\.