Skip to content

Commit 17e1dac

Browse files
authored
Merge pull request #26 from crim-ca/fix-bump-version
Update pyproject.toml bump version
2 parents 45f19ef + 1d23b11 commit 17e1dac

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
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.3"
11+
version: "0.1.4"
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-1.3.0-blue)
3+
![Version](https://img.shields.io/badge/version-0.1.4-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.3"
6+
LABEL version="0.1.4"
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.3'
19-
version = '0.1.3'
18+
release = '0.1.4'
19+
version = '0.1.4'
2020

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

pydggsapi/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
def my_schema():
4545
openapi_schema = get_openapi(
4646
title="pydggsapi: A python FastAPI OGC DGGS API implementation",
47-
version="1.3.0",
47+
version="0.1.4",
4848
routes=app.routes
4949
)
5050

5151
openapi_schema["info"] = {
5252
"title" : "pydggsapi: A python FastAPI OGC DGGS API implementation",
53-
"version" : "1.3.0",
53+
"version" : "0.1.4",
5454
"description" : "A python FastAPI OGC DGGS API implementation",
5555
"termsOfService": "https://creativecommons.org/licenses/by/4.0/",
5656
"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.3"
6+
version = "0.1.4"
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 = "1.3.0"
60+
current_version = "0.1.4"
6161
parse = """(?x)
6262
(?P<major>0|[1-9]\\d*)\\.
6363
(?P<minor>0|[1-9]\\d*)\\.

0 commit comments

Comments
 (0)