From e0ccef7b78f1f0667509c2a1f9e5fd09ed3cf74e Mon Sep 17 00:00:00 2001 From: Jon Duckworth Date: Fri, 12 Nov 2021 12:45:07 -0500 Subject: [PATCH] Bump to v1.2.0 --- CHANGELOG.md | 17 ++++++++++++++--- pystac/version.py | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3745e3ed1..17dcf2970 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ ### Added +### Removed + +### Changed + +### Fixed + +### Deprecated + +## [v1.2.0] + +### Added + - Added Table-extension ([#646](https://github.com/stac-utils/pystac/pull/646)) - Stable support for Python 3.10 ([#656](https://github.com/stac-utils/pystac/pull/656)) - `.python-version` files are now ignored by Git ([#647](https://github.com/stac-utils/pystac/pull/647)) @@ -31,8 +43,6 @@ - Fix issue that caused incorrect root links when constructing multi-leveled catalogs ([#658](https://github.com/stac-utils/pystac/pull/658)) - Regression where string `Enum` values were not serialized properly in methods like `Link.to_dict` ([#654](https://github.com/stac-utils/pystac/pull/654)) -### Deprecated - ## [v1.1.0] ### Added @@ -515,7 +525,8 @@ use `Band.create` Initial release. -[Unreleased]: +[Unreleased]: +[v1.2.0]: [v1.1.0]: [v1.0.1]: [v1.0.0]: diff --git a/pystac/version.py b/pystac/version.py index 9e795a7c5..5f69a1375 100644 --- a/pystac/version.py +++ b/pystac/version.py @@ -1,7 +1,7 @@ import os from typing import Optional -__version__ = "1.1.0" +__version__ = "1.2.0" """Library version"""