Skip to content

Commit aabff79

Browse files
committed
Version updated from 0.2.0 to 0.3.0
1 parent 843ca45 commit aabff79

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.3.0](https://github.com/crim-ca/stac-populator/tree/0.3.0) (2023-11-16)
8+
9+
510
* Add request ``session`` keyword to all request-related functions and populator methods to allow sharing a common set
611
of settings (`auth`, SSL `verify`, `cert`) across requests toward the STAC Catalog.
712
* Add `DirectoryLoader` that allows populating a STAC Catalog with Collections and Items loaded from a crawled directory

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.2.0
6+
APP_VERSION ?= 0.3.0
77

88
DOCKER_COMPOSE_FILES := -f "$(APP_ROOT)/docker/docker-compose.yml"
99
DOCKER_TAG := ghcr.io/crim-ca/stac-populator:$(APP_VERSION)

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.2.0-blue?logo=github)
4-
![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.2.0.svg?logo=github)
3+
![Latest Version](https://img.shields.io/badge/latest%20version-0.3.0-blue?logo=github)
4+
![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.3.0.svg?logo=github)
55

66
This repository contains a framework [STACpopulator](STACpopulator)
77
that can be used to implement concrete populators (see [implementations](STACpopulator/implementations))
@@ -43,7 +43,7 @@ make install-dev
4343
You can also employ the pre-built Docker:
4444

4545
```shell
46-
docker run -ti ghcr.io/crim-ca/stac-populator:0.2.0 [command]
46+
docker run -ti ghcr.io/crim-ca/stac-populator:0.3.0 [command]
4747
```
4848

4949
## Testing

STACpopulator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.3.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.2.0"
6+
LABEL version="0.3.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
@@ -16,7 +16,7 @@ exclude = [
1616

1717
[project]
1818
name = "STACpopulator"
19-
version = "0.2.0"
19+
version = "0.3.0"
2020
description = "Utility to populate STAC Catalog, Collections and Items from various dataset/catalog sources."
2121
requires-python = ">=3.10"
2222
dependencies = [
@@ -114,7 +114,7 @@ directory = "reports/coverage/html"
114114
output = "reports/coverage.xml"
115115

116116
[tool.bumpversion]
117-
current_version = "0.2.0"
117+
current_version = "0.3.0"
118118
commit = true
119119
commit_args = "--no-verify"
120120
tag = true

0 commit comments

Comments
 (0)