From 6f509c1a062bcf5142344bd73cdc32508e9a1d5f Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Fri, 16 Feb 2024 08:54:19 -0700 Subject: [PATCH] release: v0.8.0 --- CHANGELOG.md | 13 +++++++++++-- setup.cfg | 1 + src/stactools/sentinel1/__init__.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4745591..d5457ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,17 @@ This project attempts to match the major and minor versions of [stactools](https://github.com/stac-utils/stactools) and increments the patch number as needed. +## [Unreleased] + +## [0.8.0] - 2023-02-16 + +### Added + +- SLCs ([#57](https://github.com/stactools-packages/sentinel1/pull/57)) + ## [0.7.1] - 2023-05-11 -## Fixed +### Fixed - Relaxed polarization regex to work with all files in a scene ([#53](https://github.com/stactools-packages/sentinel1/pull/53)) @@ -112,7 +120,8 @@ without `.SAFE` ending to the folders and slightly different file names. - Initial release! - Support for Sentinel1 AWS RTC public dataset -[Unreleased]: https://github.com/stactools-packages/sentinel1/compare/v0.7.1...HEAD +[Unreleased]: https://github.com/stactools-packages/sentinel1/compare/v0.8.0...main +[0.8.0]: https://github.com/stactools-packages/sentinel1/compare/v0.7.1...v0.8.0 [0.7.1]: https://github.com/stactools-packages/sentinel1/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/stactools-packages/sentinel1/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/stactools-packages/sentinel1/compare/v0.5.3...v0.6.0 diff --git a/setup.cfg b/setup.cfg index 25d10dc..f706f3a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,6 +24,7 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 [options] package_dir = diff --git a/src/stactools/sentinel1/__init__.py b/src/stactools/sentinel1/__init__.py index 7478a59..45a4029 100644 --- a/src/stactools/sentinel1/__init__.py +++ b/src/stactools/sentinel1/__init__.py @@ -11,4 +11,4 @@ def register_plugin(registry: Registry) -> None: registry.register_subcommand(commands.create_sentinel1_command) -__version__ = "0.7.1" +__version__ = "0.8.0"