diff --git a/CHANGELOG.md b/CHANGELOG.md index a6a98c795..3d15fd2c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,20 +3,26 @@ ## [Unreleased] ### Added -- Include type information during packaging for use with e.g. `mypy` ([#579](https://github.com/stac-utils/pystac/pull/579)) -- Optional `dest_href` argument to `Catalog.save` to allow saving `Catalog` instances to - locations other than their `self` href ([#565](https://github.com/stac-utils/pystac/pull/565)) ### Removed ### Changed -- Pin the rustc version in Continuous Integration to work around https://github.com/rust-lang/cargo/pull/9727 ([#581](https://github.com/stac-utils/pystac/pull/581)) - ### Fixed ### Deprecated +## [v1.1.0] + +### Added +- Include type information during packaging for use with e.g. `mypy` ([#579](https://github.com/stac-utils/pystac/pull/579)) +- Optional `dest_href` argument to `Catalog.save` to allow saving `Catalog` instances to + locations other than their `self` href ([#565](https://github.com/stac-utils/pystac/pull/565)) + +### Changed + +- Pin the rustc version in Continuous Integration to work around https://github.com/rust-lang/cargo/pull/9727 ([#581](https://github.com/stac-utils/pystac/pull/581)) + ## [v1.0.1] ### Changed @@ -488,7 +494,8 @@ use `Band.create` Initial release. -[Unreleased]: +[Unreleased]: +[v1.1.0]: [v1.0.1]: [v1.0.0]: [v1.0.0-rc.3]: diff --git a/pystac/version.py b/pystac/version.py index 19da009dd..9e795a7c5 100644 --- a/pystac/version.py +++ b/pystac/version.py @@ -1,7 +1,7 @@ import os from typing import Optional -__version__ = "1.0.1" +__version__ = "1.1.0" """Library version"""