From 17a89c17103f95f8213fc5fdff55226cf31f2802 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Thu, 16 Sep 2021 08:17:08 -0600 Subject: [PATCH] Bump version to v0.2.3 Also add changelog entry for #153 --- CHANGELOG.md | 3 ++- src/stactools/core/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd4129f3..3c2d488e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,11 @@ # Changelog -## Unreleased +## stactools 0.2.3 ### Added - `stactools.core.create.item` and associated CLI subcommand ([#201](https://github.com/stac-utils/stactools/pull/201)) +- `stactools.core.add.add_item` and associated CLI command for adding an item to a Catlog/Collection ([#153](https://github.com/stac-utils/stactools/pull/153)) ### Fixed diff --git a/src/stactools/core/__init__.py b/src/stactools/core/__init__.py index b823298e..e74477bf 100644 --- a/src/stactools/core/__init__.py +++ b/src/stactools/core/__init__.py @@ -7,4 +7,4 @@ from stactools.core.merge import (merge_items, merge_all_items) from stactools.core.add import add_item -__version__ = "0.2.2" +__version__ = "0.2.3"