Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.4-blue)

A python FastAPI OGC DGGS API implementation

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"
LABEL vendor="CRIM"
LABEL version="0.1.3"
LABEL version="0.1.4"

ARG DGGRID_VERSION=8.41

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pydggsapi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.4",
routes=app.routes
)

openapi_schema["info"] = {
"title" : "pydggsapi: A python FastAPI OGC DGGS API implementation",
"version" : "1.3.0",
"version" : "0.1.4",
"description" : "A python FastAPI OGC DGGS API implementation",
"termsOfService": "https://creativecommons.org/licenses/by/4.0/",
"contact": {
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -57,7 +57,7 @@ minversion = "6.0"
#addopts = "-ra -s"

[tool.bumpversion]
current_version = "1.3.0"
current_version = "0.1.4"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.
Expand Down