From 8efe00a6caa36618a3992e75e464ae601de351bc Mon Sep 17 00:00:00 2001 From: Jon Duckworth Date: Fri, 22 Jul 2022 08:57:28 -0400 Subject: [PATCH] Changes to support 1.5.0 release (#849) --- CHANGELOG.md | 15 ++++++++++++--- pystac/version.py | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d1c14f34..db5e5d6ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ ### Added +### Removed + +### Changed + +### Fixed + +## [v1.5.0] + +### Added + - Enum MediaType entry for PDF documents ([#758](https://github.com/stac-utils/pystac/pull/758)) - Enum MediaType entry for HTML documents ([#816](https://github.com/stac-utils/pystac/pull/816)) - Updated Link to obtain stac_io from owner root ([#762](https://github.com/stac-utils/pystac/pull/762)) @@ -13,8 +23,6 @@ - Rich HTML representations for Jupyter Notebook display ([#743](https://github.com/stac-utils/pystac/pull/743)) - Add `assets` argument to `Item` and `Collection` init methods to allow adding Assets during object initialization ([#834](https://github.com/stac-utils/pystac/pull/834)) -### Removed - ### Changed - Updated Raster Extension from v1.0.0 to v1.1.0 ([#809](https://github.com/stac-utils/pystac/pull/809)) @@ -594,7 +602,8 @@ use `Band.create` Initial release. -[Unreleased]: +[Unreleased]: +[v1.5.0]: [v1.4.0]: [v1.3.0]: [v1.2.0]: diff --git a/pystac/version.py b/pystac/version.py index 32f4a026a..ba4486ac1 100644 --- a/pystac/version.py +++ b/pystac/version.py @@ -1,7 +1,7 @@ import os from typing import Optional -__version__ = "1.4.0" +__version__ = "1.5.0" """Library version"""