Skip to content

Commit

Permalink
Version updated from 0.5.0 to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Feb 22, 2024
1 parent b4f277d commit 7e7adbf
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

<!-- insert list items of new changes here -->

## [0.6.0](https://github.com/crim-ca/stac-populator/tree/0.6.0) (2024-02-22)


* Add validation to the STAC Items in `CMIP6_UofT` implementation.
* Replace CMIP6 JSON-schema URL to
`"https://raw.githubusercontent.com/dchandan/stac-extension-cmip6/main/json-schema/schema.json"`
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.0
APP_VERSION ?= 0.6.0

DOCKER_COMPOSE_FILES := -f "$(APP_ROOT)/docker/docker-compose.yml"
DOCKER_TAG := ghcr.io/crim-ca/stac-populator:$(APP_VERSION)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# STAC Catalog Populator

![Latest Version](https://img.shields.io/badge/latest%20version-0.5.0-blue?logo=github)
![Commits Since Latest](https://img.shields.io/github/commits-since/crim-ca/stac-populator/0.5.0.svg?logo=github)
![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)
![GitHub License](https://img.shields.io/github/license/crim-ca/stac-populator)

This repository contains a framework [STACpopulator](STACpopulator)
Expand Down Expand Up @@ -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.5.0 [command]
docker run -ti ghcr.io/crim-ca/stac-populator:0.6.0 [command]
```

*Note*: <br>
Expand Down
2 changes: 1 addition & 1 deletion STACpopulator/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0"
__version__ = "0.6.0"
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"
LABEL vendor="CRIM"
LABEL version="0.5.0"
LABEL version="0.6.0"

# setup paths
ENV APP_DIR=/opt/local/src/stac-populator
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ output = "reports/coverage.xml"


[tool.bumpversion]
current_version = "0.5.0"
current_version = "0.6.0"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down Expand Up @@ -98,9 +98,10 @@ regex = true
search = "^name = \"STACpopulator\"\nversion = \"{current_version}\"$"
replace = "name = \"STACpopulator\"\nversion = \"{new_version}\""


[project]
name = "STACpopulator"
version = "0.5.0"
version = "0.6.0"
description = "Utility to populate STAC Catalog, Collections and Items from various dataset/catalog sources."
requires-python = ">=3.10"
dependencies = [
Expand Down

0 comments on commit 7e7adbf

Please sign in to comment.