Skip to content

Commit 298e596

Browse files
Merge pull request #35 from developmentseed/release/v0.3.3
Release/v0.3.3
2 parents 947e479 + 9421fc0 commit 298e596

File tree

4 files changed

+46
-1
lines changed

4 files changed

+46
-1
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.3.3] - 2025-11-06
6+
7+
* fix single date query to only select one day (author @wschoors, https://github.com/developmentseed/titiler-stacapi/pull/34)
8+
59
## [0.3.2] - 2025-05-19
610

711
* Align ows:Title, Identifier and Abstract in WMTS GetCapabilities (author @jverrydt, https://github.com/developmentseed/titiler-stacapi/pull/31)

RELEASING.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Releasing
2+
3+
This is a checklist for releasing a new version of **titiler-stacapi**.
4+
5+
1. Create a release branch named `release/vX.Y.Z`, where `X.Y.Z` is the new version
6+
7+
2. Make sure the [Changelog](CHANGES.md) is up to date with latest changes and release date set
8+
9+
3. Run [`bump-my-version`](https://callowayproject.github.io/bump-my-version/) to update all titiler's module versions:
10+
11+
```
12+
bump-my-version bump minor --new-version 0.20.0
13+
```
14+
15+
4. Push your release branch, create a PR, and get approval
16+
17+
5. Once the PR is merged, create a new (annotated, signed) tag on the appropriate commit. Name the tag `X.Y.Z`, and include `vX.Y.Z` as its annotation message
18+
19+
```
20+
git tag vX.Y.Z
21+
```
22+
23+
6. Push your tag to Github, which will kick off the publishing workflow
24+
25+
7. Create a [new release](https://github.com/developmentseed/titiler-stacapi/releases/new) targeting the new tag, and use the "Generate release notes" feature to populate the description. Publish the release and mark it as the latest

pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ dynamic = ["version"]
3535
[project.optional-dependencies]
3636
dev = [
3737
"pre-commit",
38+
"bump-my-version",
3839
]
3940
test = [
4041
"pytest",
@@ -106,3 +107,18 @@ no_implicit_optional = true
106107
strict_optional = true
107108
namespace_packages = true
108109
explicit_package_bases = true
110+
111+
[tool.bumpversion]
112+
current_version = "0.3.3"
113+
search = "{current_version}"
114+
replace = "{new_version}"
115+
regex = false
116+
tag = false
117+
commit = true
118+
allow_dirty = false
119+
tag_name = "{new_version}"
120+
121+
[[tool.bumpversion.files]]
122+
filename = "titiler/stacapi/__init__.py"
123+
search = '__version__ = "{current_version}"'
124+
replace = '__version__ = "{new_version}"'

titiler/stacapi/__init__.py

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

3-
__version__ = "0.3.2"
3+
__version__ = "0.3.3"

0 commit comments

Comments
 (0)