Skip to content

Commit 6f8976b

Browse files
committed
Bump version: 1.0.3 → 1.1.0
1 parent f4e7402 commit 6f8976b

5 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ CHANGES
66
`Unreleased <https://github.com/Ouranosinc/CanarieAPI/tree/master>`_ (latest)
77
------------------------------------------------------------------------------------
88

9+
.. **ADD LIST ITEMS WITH NEW CHANGES AND REMOVE THIS COMMENT**
10+
11+
* No changes yet.
12+
13+
`1.1.0 <https://github.com/Ouranosinc/CanarieAPI/tree/1.1.0>`_ (2026-03-02)
14+
------------------------------------------------------------------------------------
15+
916
* Replace Docker image to ``python:3.12-slim``.
1017
* Update Docker ``CMD`` with JSON execution form.
1118

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM python:3.12-slim
22
LABEL description="CanarieAPI: Self describing REST service for Canarie registry."
33
LABEL maintainer="David Byrns <david.byrns@crim.ca>, Francis Charette-Migneault <francis.charette-migneault@crim.ca>"
44
LABEL vendor="Ouranosinc, CRIM"
5-
LABEL version="1.0.3"
5+
LABEL version="1.1.0"
66

77
ENV PKG_DIR=/opt/local/src/CanarieAPI
88
WORKDIR ${PKG_DIR}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ MAKEFILE_NAME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
2020
APP_ROOT := $(abspath $(lastword $(MAKEFILE_NAME))/..)
2121
APP_NAME := canarieapi
2222
# NOTE: don't change this manually, use the make bump command to update everywhere
23-
APP_VERSION ?= 1.0.3
23+
APP_VERSION ?= 1.1.0
2424

2525
# docker
2626
APP_DOCKER_REPO := pavics/canarieapi

canarieapi/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
General meta information on the canarieapi package.
33
"""
44

5-
__version__ = "1.0.3"
5+
__version__ = "1.1.0"
66
__author__ = "David Byrns, Francis Charette-Migneault"
77
__email__ = "francis.charette-migneault@crim.ca"
88
__title__ = "Canarie API"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.3
2+
current_version = 1.1.0
33
commit = True
44
tag = True
55
tag_name = {new_version}

0 commit comments

Comments
 (0)