diff --git a/CHANGELOG.md b/CHANGELOG.md index 6610b26d6..0066c8dff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ ### Added +### Removed + +### Changed + +### Deprecated + +## [v1.0.0-rc.3] + +### Added + - (Experimental) support for Python 3.10 ([#473](https://github.com/stac-utils/pystac/pull/473)) - `LabelTask` enum in `pystac.extensions.label` with recommended values for `"label:tasks"` field ([#484](https://github.com/stac-utils/pystac/pull/484)) @@ -41,8 +51,6 @@ been removed in this release. ([#490](https://github.com/stac-utils/pystac/pull/490)) - Support for Python 3.6 ([#500](https://github.com/stac-utils/pystac/pull/500)) -### Deprecated - ## [v1.0.0-rc.2] ### Added @@ -428,7 +436,8 @@ use `Band.create` Initial release. -[Unreleased]: +[Unreleased]: +[v1.0.0-rc.3]: [v1.0.0-rc.2]: [v1.0.0-rc.1]: [v1.0.0-beta.3]: diff --git a/pystac/version.py b/pystac/version.py index 7c5ee64ac..588c47bb4 100644 --- a/pystac/version.py +++ b/pystac/version.py @@ -1,7 +1,7 @@ import os from typing import Optional -__version__ = "1.0.0-rc.2" +__version__ = "1.0.0-rc.3" """Library version"""