diff --git a/CHANGES.md b/CHANGES.md index 3a3eece..0b6b22d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,11 @@ ## [Unreleased](https://github.com/crim-ca/stac-populator) (latest) + + +## [0.2.0](https://github.com/crim-ca/stac-populator/tree/0.2.0) (2023-11-10) + + * Add `LICENSE` file. * Add `bump-my-version` with `make version` and `make VERSION=<...> bump` utilities to self-update release versions. * Add more metadata to `pyproject.toml`. diff --git a/Makefile b/Makefile index bd5daeb..5f80f6f 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ MAKEFILE_NAME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)) -include Makefile.config APP_ROOT := $(abspath $(lastword $(MAKEFILE_NAME))/..) APP_NAME := STACpopulator -APP_VERSION ?= 0.1.0 +APP_VERSION ?= 0.2.0 DOCKER_COMPOSE_FILES := -f "$(APP_ROOT)/docker/docker-compose.yml" DOCKER_TAG := ghcr.io/crim-ca/stac-populator:$(APP_VERSION) diff --git a/README.md b/README.md index 4efb3ee..6d5893b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # STAC Catalog Populator -![Latest Version](https://img.shields.io/badge/latest%20version-0.1.0-blue?logo=github) -![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.1.0.svg?logo=github) +![Latest Version](https://img.shields.io/badge/latest%20version-0.2.0-blue?logo=github) +![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.2.0.svg?logo=github) This repository contains a framework [STACpopulator](STACpopulator) that can be used to implement concrete populators (see [implementations](STACpopulator/implementations)) @@ -43,7 +43,7 @@ make install-dev You can also employ the pre-built Docker: ```shell -docker run -ti ghcr.io/crim-ca/stac-populator:0.1.0 [command] +docker run -ti ghcr.io/crim-ca/stac-populator:0.2.0 [command] ``` ## Testing diff --git a/STACpopulator/__init__.py b/STACpopulator/__init__.py index 3dc1f76..d3ec452 100644 --- a/STACpopulator/__init__.py +++ b/STACpopulator/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/docker/Dockerfile b/docker/Dockerfile index 07c269c..235d708 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,7 +3,7 @@ LABEL description.short="STAC Populator" LABEL description.long="Utility to populate STAC Catalog, Collections and Items from various dataset/catalog sources." LABEL maintainer="Francis Charette-Migneault " LABEL vendor="CRIM" -LABEL version="0.1.0" +LABEL version="0.2.0" # setup paths ENV APP_DIR=/opt/local/src/stac-populator diff --git a/pyproject.toml b/pyproject.toml index ca64cba..ac0db2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ exclude = [ [project] name = "STACpopulator" -version = "0.1.0" +version = "0.2.0" description = "Utility to populate STAC Catalog, Collections and Items from various dataset/catalog sources." requires-python = ">=3.10" dependencies = [ @@ -110,7 +110,7 @@ directory = "reports/coverage/html" output = "reports/coverage.xml" [tool.bumpversion] -current_version = "0.1.0" +current_version = "0.2.0" commit = true commit_args = "--no-verify" tag = true