Skip to content

Commit

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

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

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

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


<!-- insert list items of new changes here -->
- 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)

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.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)
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.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)
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.6.0 [command]
docker run -ti ghcr.io/crim-ca/stac-populator:0.7.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.6.0"
__version__ = "0.7.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.6.0"
LABEL version="0.7.0"

# setup paths
ENV APP_DIR=/opt/local/src/stac-populator
Expand Down
4 changes: 2 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.6.0"
current_version = "0.7.0"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down Expand Up @@ -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 = [
Expand Down

0 comments on commit dadc5f8

Please sign in to comment.