Skip to content

Commit 60249da

Browse files
add releasing doc (#1174)
1 parent a5f2a3a commit 60249da

File tree

14 files changed

+46
-21
lines changed

14 files changed

+46
-21
lines changed

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 0.22.3 (2025-06-17)
6+
57
### titiler.xarray
68

79
* use dimension's `dtype` to cast user *selection*

RELEASING.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Releasing
2+
3+
This is a checklist for releasing a new version of **titiler**.
4+
5+
1. Determine the next version
6+
We currently do not have published versioning guidelines. We usually use `minor` version update when pushing breaking changes and `patch` for every other updates
7+
2. Create a release branch named `release/vX.Y.Z`, where `X.Y.Z` is the new version
8+
3. Search and replace all instances of the current version number with the new version
9+
10+
We recommend to use [`bump-my-version`](https://github.com/callowayproject/bump-my-version) CLI
11+
```
12+
bump-my-version bump --new-version 3.1.0
13+
```
14+
15+
4. Manually increase the helm chart `version` in `/deployment/k8s/charts/Chart.yaml (not matching titiler's version)
16+
5. Update [CHANGES.md](./CHANGES.md) for the new version
17+
6. Push your release branch, create a PR, and get approval
18+
7. Once the PR is merged, create a new (annotated, signed) tag on the appropriate commit
19+
Name the tag `X.Y.Z`, and include `vX.Y.Z` as its annotation message
20+
8. Push your tag to Github, which will kick off the publishing workflow
21+
9. Create a [new release](https://github.com/stac-utils/stac-fastapi/releases/new) targeting the new tag, and use the "Generate release notes" feature to populate the description.
22+
Publish the release and mark it as the latest.

deployment/aws/lambda/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /tmp
88
RUN yum install -y gcc-c++
99

1010
RUN python -m pip install pip -U
11-
RUN python -m pip install "titiler.application==0.22.2" "mangum>=0.10.0" -t /asset --no-binary pydantic
11+
RUN python -m pip install "titiler.application==0.22.3" "mangum>=0.10.0" -t /asset --no-binary pydantic
1212

1313
# Reduce package size and remove useless files
1414
RUN cd /asset && find . -type f -name '*.pyc' | while read f; do n=$(echo $f | sed 's/__pycache__\///' | sed 's/.cpython-[0-9]*//'); cp $f $n; done;

deployment/k8s/charts/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: 0.22.2
2+
appVersion: 0.22.3
33
description: A dynamic Web Map tile server
44
name: titiler
5-
version: 1.2.5
5+
version: 1.2.6
66
icon: https://raw.githubusercontent.com/developmentseed/titiler/main/docs/logos/TiTiler_logo_small.png
77
maintainers:
88
- name: emmanuelmathot # Emmanuel Mathot

pyproject.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ classifiers = [
2929
"Programming Language :: Python :: 3.13",
3030
"Topic :: Scientific/Engineering :: GIS",
3131
]
32-
version="0.22.2"
32+
version="0.22.3"
3333
dependencies = [
34-
"titiler.core==0.22.2",
35-
"titiler.xarray==0.22.2",
36-
"titiler.extensions==0.22.2",
37-
"titiler.mosaic==0.22.2",
38-
"titiler.application==0.22.2",
34+
"titiler.core==0.22.3",
35+
"titiler.xarray==0.22.3",
36+
"titiler.extensions==0.22.3",
37+
"titiler.mosaic==0.22.3",
38+
"titiler.application==0.22.3",
3939
]
4040

4141
[project.urls]
@@ -130,11 +130,12 @@ filterwarnings = [
130130

131131

132132

133+
133134
[tool.hatch.build.targets.wheel]
134135
bypass-selection = true
135136

136137
[tool.bumpversion]
137-
current_version = "0.22.2"
138+
current_version = "0.22.3"
138139
parse = """(?x)
139140
(?P<major>\\d+)\\.
140141
(?P<minor>\\d+)\\.

src/titiler/application/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.22.2",
35-
"titiler.extensions[cogeo,stac]==0.22.2",
36-
"titiler.mosaic==0.22.2",
34+
"titiler.core==0.22.3",
35+
"titiler.extensions[cogeo,stac]==0.22.3",
36+
"titiler.mosaic==0.22.3",
3737
"starlette-cramjam>=0.4,<0.5",
3838
"pydantic-settings~=2.0",
3939
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.application"""
22

3-
__version__ = "0.22.2"
3+
__version__ = "0.22.3"

src/titiler/core/titiler/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.core"""
22

3-
__version__ = "0.22.2"
3+
__version__ = "0.22.3"
44

55
from . import dependencies, errors, factory, routing # noqa
66
from .factory import ( # noqa

src/titiler/extensions/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
]
3232
dynamic = ["version"]
3333
dependencies = [
34-
"titiler.core==0.22.2"
34+
"titiler.core==0.22.3"
3535
]
3636

3737
[project.optional-dependencies]

src/titiler/extensions/titiler/extensions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.extensions"""
22

3-
__version__ = "0.22.2"
3+
__version__ = "0.22.3"
44

55
from .cogeo import cogValidateExtension # noqa
66
from .render import stacRenderExtension # noqa

0 commit comments

Comments
 (0)