Skip to content

Commit db27117

Browse files
committed
Version updated from 0.12.0 to 0.13.0
1 parent 3492632 commit db27117

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

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.13.0](https://github.com/crim-ca/stac-populator/tree/0.13.0) (2026-01-29)
8+
9+
510
* Simplify populator implementation discovery and reduce boilerplate for new implementations.
611
* Add a classmethod to add additional CLI args to the `STACpopulatorBase` class (replaces `add_parser_args`)
712
* Add a classmethod to run the populator based on CLI args to the `STACpopulatorBase` class (replaces `runner`)

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.12.0
6+
APP_VERSION ?= 0.13.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.12.0-blue?logo=github)
4-
![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.12.0.svg?logo=github)
3+
![Latest Version](https://img.shields.io/badge/latest%20version-0.13.0-blue?logo=github)
4+
![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.13.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.12.0 [command]
118+
docker run -ti ghcr.io/crim-ca/stac-populator:0.13.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.12.0"
1+
__version__ = "0.13.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 <francis.charette-migneault@crim.ca>"
55
LABEL vendor="CRIM"
6-
LABEL version="0.12.0"
6+
LABEL version="0.13.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.12.0"
57+
current_version = "0.13.0"
5858
commit = true
5959
commit_args = "--no-verify"
6060
tag = true
@@ -132,7 +132,7 @@ MD033.allowed_elements = ["br"]
132132

133133
[project]
134134
name = "STACpopulator"
135-
version = "0.12.0"
135+
version = "0.13.0"
136136
description = "Utility to populate STAC Catalog, Collections and Items from various dataset/catalog sources."
137137
requires-python = ">=3.10,<4"
138138
dependencies = [

0 commit comments

Comments
 (0)