From dadc5f8516475e15a75a2426b181221dd8db974e Mon Sep 17 00:00:00 2001 From: Deepak Chandan Date: Tue, 27 Feb 2024 22:32:48 -0500 Subject: [PATCH] Version updated from 0.6.0 to 0.7.0 --- CHANGES.md | 6 ++++++ Makefile | 2 +- README.md | 6 +++--- STACpopulator/__init__.py | 2 +- docker/Dockerfile | 2 +- pyproject.toml | 4 ++-- 6 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f3f8fee..227114e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,11 +2,17 @@ ## [Unreleased](https://github.com/crim-ca/stac-populator) (latest) + + +## [0.7.0](https://github.com/crim-ca/stac-populator/tree/0.7.0) (2024-02-27) + + - Adding ability to add collection level assets - Adding ability to add collection level links - Adding collection links to `CMIP6_UofT` - Adding an end date to `CMIP6_UofT`'s temporal extent for better rendering in STAC Browser +- Updates to datacube extension helper routines for `CMIP6_UofT`. ## [0.6.0](https://github.com/crim-ca/stac-populator/tree/0.6.0) (2024-02-22) diff --git a/Makefile b/Makefile index d061580..309ab19 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.6.0 +APP_VERSION ?= 0.7.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 272154f..c40b46e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # STAC Catalog Populator -![Latest Version](https://img.shields.io/badge/latest%20version-0.6.0-blue?logo=github) -![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.6.0.svg?logo=github) +![Latest Version](https://img.shields.io/badge/latest%20version-0.7.0-blue?logo=github) +![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.7.0.svg?logo=github) ![GitHub License](https://img.shields.io/github/license/crim-ca/stac-populator) This repository contains a framework [STACpopulator](STACpopulator) @@ -65,7 +65,7 @@ You can also employ the pre-built Docker, which can be called as follows, where `[command]` corresponds to any of the above example operations. ```shell -docker run -ti ghcr.io/crim-ca/stac-populator:0.6.0 [command] +docker run -ti ghcr.io/crim-ca/stac-populator:0.7.0 [command] ``` *Note*:
diff --git a/STACpopulator/__init__.py b/STACpopulator/__init__.py index 906d362..49e0fc1 100644 --- a/STACpopulator/__init__.py +++ b/STACpopulator/__init__.py @@ -1 +1 @@ -__version__ = "0.6.0" +__version__ = "0.7.0" diff --git a/docker/Dockerfile b/docker/Dockerfile index e400a3a..515fce6 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.6.0" +LABEL version="0.7.0" # setup paths ENV APP_DIR=/opt/local/src/stac-populator diff --git a/pyproject.toml b/pyproject.toml index e3f5b34..3f4babe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ output = "reports/coverage.xml" [tool.bumpversion] -current_version = "0.6.0" +current_version = "0.7.0" commit = true commit_args = "--no-verify" tag = true @@ -101,7 +101,7 @@ replace = "name = \"STACpopulator\"\nversion = \"{new_version}\"" [project] name = "STACpopulator" -version = "0.6.0" +version = "0.7.0" description = "Utility to populate STAC Catalog, Collections and Items from various dataset/catalog sources." requires-python = ">=3.10" dependencies = [