diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8c41258..2191279 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,10 +1,10 @@ repos: - repo: https://github.com/psf/black - rev: 23.9.1 + rev: 23.10.0 hooks: - id: black - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.5.1 + rev: v1.6.1 hooks: - id: mypy additional_dependencies: @@ -16,6 +16,6 @@ repos: - types-tabulate - types-tqdm - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: "v0.0.292" + rev: "v0.1.1" hooks: - id: ruff diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c44233..d533acc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.2.3] - 2023-10-20 + ### Added - `keep_non_downloaded` ([#116](https://github.com/stac-utils/stac-asset/pull/116)) @@ -109,7 +111,8 @@ Used to be . Initial release. -[unreleased]: https://github.com/stac-utils/stac-asset/compare/v0.2.2...HEAD +[unreleased]: https://github.com/stac-utils/stac-asset/compare/v0.2.3...HEAD +[0.2.3]: https://github.com/stac-utils/stac-asset/compare/v0.2.2...v0.2.3 [0.2.2]: https://github.com/stac-utils/stac-asset/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/stac-utils/stac-asset/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/stac-utils/stac-asset/compare/v0.1.1...v0.2.0 diff --git a/pyproject.toml b/pyproject.toml index f54baeb..44deb3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "stac-asset" -version = "0.2.2" +version = "0.2.3" description = "Read and download STAC assets across platforms and providers" authors = [{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" }] readme = "README.md"