From 73e518b3404cd82613a0e9067a97499cefa7f9f4 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Thu, 31 Aug 2023 06:15:51 -0600 Subject: [PATCH] release: v0.4.1 (#62) --- .pre-commit-config.yaml | 10 +++++----- CHANGELOG.MD | 10 ++++++++++ src/stactools/landsat/__init__.py | 2 +- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 07b7191..dad8fd7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,21 +3,21 @@ repos: - repo: https://github.com/psf/black - rev: 23.3.0 + rev: 23.7.0 hooks: - id: black - repo: https://github.com/codespell-project/codespell - rev: v2.2.4 + rev: v2.2.5 hooks: - id: codespell args: [--ignore-words=.codespellignore] types_or: [jupyter, markdown, python, shell] - repo: https://github.com/PyCQA/flake8 - rev: 6.0.0 + rev: 6.1.0 hooks: - id: flake8 - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.2.0 + rev: v1.5.1 hooks: - id: mypy additional_dependencies: @@ -29,6 +29,6 @@ repos: hooks: - id: isort - repo: https://github.com/igorshubovych/markdownlint-cli - rev: v0.33.0 + rev: v0.35.0 hooks: - id: markdownlint diff --git a/CHANGELOG.MD b/CHANGELOG.MD index d329be3..96e99ee 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). 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.4.1] - 2023-08-20 + +### Added + +- Create items from MTL text metadata ([#58](https://github.com/stactools-packages/landsat/pull/58)) + ## [0.4.0] - 2023-08-03 ### Added @@ -99,6 +107,8 @@ NOTE: For backwards compatibility, all items under the Added, Changed, and Fixed - Upgrade to stactools 0.2.1.a2 (supporting PySTAC 1.0.0) +[Unreleased]: +[0.4.1]: [0.4.0]: [0.3.0]: [0.2.4]: diff --git a/src/stactools/landsat/__init__.py b/src/stactools/landsat/__init__.py index b10e4c5..316d75c 100644 --- a/src/stactools/landsat/__init__.py +++ b/src/stactools/landsat/__init__.py @@ -10,4 +10,4 @@ def register_plugin(registry: Registry) -> None: registry.register_subcommand(commands.create_landsat_command) -__version__ = "0.4.0" +__version__ = "0.4.1"