Skip to content

Commit a201c2f

Browse files
committed
Bump version: 0.1.4 → 0.1.5
1 parent ff158fa commit a201c2f

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors:
88
given-names: "Alexander"
99
orcid: https://orcid.org/0000-0003-4386-4450
1010
title: "pydggsapi: A python FastAPI OGC DGGS API implementation"
11-
version: "0.1.4"
11+
version: "0.1.5"
1212
doi: none
1313
date-released: 2025-03-01
1414
url: "https://github.com/LandscapeGeoinformatics/pydggsapi/"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pydggsapi
22

3-
![Version](https://img.shields.io/badge/version-0.1.4-blue)
3+
![Version](https://img.shields.io/badge/version-0.1.5-blue)
44

55
A python FastAPI OGC DGGS API implementation
66

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ LABEL description.short="DGGS API"
33
LABEL description.long="OGC API for DGGS (Discretized Global Grid System) data management and processing."
44
LABEL maintainer="Francis Charette-Migneault <[email protected]>"
55
LABEL vendor="CRIM"
6-
LABEL version="0.1.4"
6+
LABEL version="0.1.5"
77

88
ARG DGGRID_VERSION=8.41
99

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
author = 'Wai Tik Chan, Alexander Kmoch'
1616
release = '2025'
1717

18-
release = '0.1.4'
19-
version = '0.1.4'
18+
release = '0.1.5'
19+
version = '0.1.5'
2020

2121
# -- General configuration ---------------------------------------------------
2222
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

pydggsapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
__version__ = "0.1.4"
3+
__version__ = "0.1.5"

pydggsapi/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@
7272
def my_schema():
7373
openapi_schema = get_openapi(
7474
title="pydggsapi: A python FastAPI OGC DGGS API implementation",
75-
version="0.1.4",
75+
version="0.1.5",
7676
routes=app.routes,
7777
servers=[{"url": root_path}] if root_path else None,
7878
)
7979

8080
openapi_schema["info"] = {
8181
"title" : "pydggsapi: A python FastAPI OGC DGGS API implementation",
82-
"version" : "0.1.4",
82+
"version" : "0.1.5",
8383
"description" : "A python FastAPI OGC DGGS API implementation",
8484
"termsOfService": "https://creativecommons.org/licenses/by/4.0/",
8585
"contact": api_contact,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pydggsapi"
33

44
[project]
55
name = "pydggsapi"
6-
version = "0.1.4"
6+
version = "0.1.5"
77
description = "A python FastAPI OGC DGGS API implementation"
88
license = "Apache-2.0"
99
license-files = ["LICENSE"]
@@ -57,7 +57,7 @@ minversion = "6.0"
5757
#addopts = "-ra -s"
5858

5959
[tool.bumpversion]
60-
current_version = "0.1.4"
60+
current_version = "0.1.5"
6161
parse = """(?x)
6262
(?P<major>0|[1-9]\\d*)\\.
6363
(?P<minor>0|[1-9]\\d*)\\.

0 commit comments

Comments
 (0)