File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed
Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 88 given-names : " Alexander"
99 orcid : https://orcid.org/0000-0003-4386-4450
1010title : " pydggsapi: A python FastAPI OGC DGGS API implementation"
11- version : " 0.1.4 "
11+ version : " 0.1.5 "
1212doi : none
1313date-released : 2025-03-01
1414url : " https://github.com/LandscapeGeoinformatics/pydggsapi/"
Original file line number Diff line number Diff line change 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
55A python FastAPI OGC DGGS API implementation
66
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ LABEL description.short="DGGS API"
33LABEL description.long="OGC API for DGGS (Discretized Global Grid System) data management and processing."
44LABEL maintainer=
"Francis Charette-Migneault <[email protected] >" 55LABEL vendor="CRIM"
6- LABEL version="0.1.4 "
6+ LABEL version="0.1.5 "
77
88ARG DGGRID_VERSION=8.41
99
Original file line number Diff line number Diff line change 1515author = 'Wai Tik Chan, Alexander Kmoch'
1616release = '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
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22# -*- coding: utf-8 -*-
3- __version__ = "0.1.4 "
3+ __version__ = "0.1.5 "
Original file line number Diff line number Diff line change 7272def 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 ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "pydggsapi"
33
44[project ]
55name = " pydggsapi"
6- version = " 0.1.4 "
6+ version = " 0.1.5 "
77description = " A python FastAPI OGC DGGS API implementation"
88license = " Apache-2.0"
99license-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 "
6161parse = """ (?x)
6262 (?P<major>0|[1-9]\\ d*)\\ .
6363 (?P<minor>0|[1-9]\\ d*)\\ .
You can’t perform that action at this time.
0 commit comments