diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a09eefe2..681684073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ ### Added +### Removed + +### Changed + +### Fixed + +### Deprecated + +## [v1.3.0] + +### Added + - Type annotations for instance attributes on all classes ([#705](https://github.com/stac-utils/pystac/pull/705)) - `extensions.datacube.Variable.to_dict` method ([#699](https://github.com/stac-utils/pystac/pull/699)]) - Clarification of possible errors when using `.ext` to extend an object ([#701](https://github.com/stac-utils/pystac/pull/701)) @@ -28,8 +40,6 @@ - Paths to sub-catalog files when using `Catalog.save` ([#714](https://github.com/stac-utils/pystac/pull/714)) - Link to PySTAC Introduction tutorial in tutorials index page ([#719](https://github.com/stac-utils/pystac/pull/719)) -### Deprecated - ## [v1.2.0] ### Added @@ -543,7 +553,8 @@ use `Band.create` Initial release. -[Unreleased]: +[Unreleased]: +[v1.3.0]: [v1.2.0]: [v1.1.0]: [v1.0.1]: diff --git a/pystac/version.py b/pystac/version.py index 5f69a1375..6a72146e6 100644 --- a/pystac/version.py +++ b/pystac/version.py @@ -1,7 +1,7 @@ import os from typing import Optional -__version__ = "1.2.0" +__version__ = "1.3.0" """Library version"""