Skip to content

Commit c5a02c7

Browse files
committed
Version updated from 0.14.0 to 0.15.0
1 parent d4e5869 commit c5a02c7

6 files changed

Lines changed: 13 additions & 8 deletions

File tree

CHANGES.md

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

33
## [Unreleased](https://github.com/crim-ca/stac-populator) (latest)
44

5+
<!-- insert list items of new changes here -->
6+
7+
## [0.15.0](https://github.com/crim-ca/stac-populator/tree/0.15.0) (2026-04-21)
8+
9+
510
* Add `-c`/`--collection` option to `export` operation to filter which collections should be exported,
611
rather than the entire catalog. The value can be the plain Collection ID or a regex pattern.
712
* Add explicit log entries of processed or skipped Catalogs/Collections

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MAKEFILE_NAME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
33
-include Makefile.config
44
APP_ROOT := $(abspath $(lastword $(MAKEFILE_NAME))/..)
55
APP_NAME := STACpopulator
6-
APP_VERSION ?= 0.14.0
6+
APP_VERSION ?= 0.15.0
77

88
DOCKER_COMPOSE_FILES := -f "$(APP_ROOT)/docker/docker-compose.yml"
99
COMPOSE_PROJECT_NAME := stac-populator

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# STAC Catalog Populator
22

3-
![Latest Version](https://img.shields.io/badge/latest%20version-0.14.0-blue?logo=github)
4-
![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.14.0.svg?logo=github)
3+
![Latest Version](https://img.shields.io/badge/latest%20version-0.15.0-blue?logo=github)
4+
![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.15.0.svg?logo=github)
55
![GitHub License](https://img.shields.io/github/license/crim-ca/stac-populator)
66

77
This repository contains a framework [STACpopulator](STACpopulator)
@@ -115,7 +115,7 @@ You can also employ the pre-built Docker, which can be called as follows,
115115
where `[command]` corresponds to any of the above example operations.
116116

117117
```shell
118-
docker run -ti ghcr.io/crim-ca/stac-populator:0.14.0 [command]
118+
docker run -ti ghcr.io/crim-ca/stac-populator:0.15.0 [command]
119119
```
120120

121121
*Note*: <br>

STACpopulator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.14.0"
1+
__version__ = "0.15.0"

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ LABEL description.short="STAC Populator"
33
LABEL description.long="Utility to populate STAC Catalog, Collections and Items from various dataset/catalog sources."
44
LABEL maintainer="Francis Charette-Migneault <[email protected]>"
55
LABEL vendor="CRIM"
6-
LABEL version="0.14.0"
6+
LABEL version="0.15.0"
77

88
# setup paths
99
ENV APP_DIR=/opt/local/src/stac-populator

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ output = "reports/coverage.xml"
5454

5555

5656
[tool.bumpversion]
57-
current_version = "0.14.0"
57+
current_version = "0.15.0"
5858
commit = true
5959
commit_args = "--no-verify"
6060
tag = true
@@ -130,7 +130,7 @@ MD033.allowed_elements = ["br"]
130130

131131
[project]
132132
name = "STACpopulator"
133-
version = "0.14.0"
133+
version = "0.15.0"
134134
description = "Utility to populate STAC Catalog, Collections and Items from various dataset/catalog sources."
135135
requires-python = ">=3.10,<4"
136136
dependencies = [

0 commit comments

Comments
 (0)