Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.4.1 #62

Merged
merged 1 commit into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
10 changes: 10 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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]: <https://github.com/stactools-packages/landsat/compare/v0.4.1..main>
[0.4.1]: <https://github.com/stactools-packages/landsat/compare/v0.4.0..v0.4.1>
[0.4.0]: <https://github.com/stactools-packages/landsat/compare/v0.3.0..v0.4.0>
[0.3.0]: <https://github.com/stactools-packages/landsat/compare/v0.2.4..v0.3.0>
[0.2.4]: <https://github.com/stactools-packages/landsat/compare/v0.2.3..v0.2.4>
Expand Down
2 changes: 1 addition & 1 deletion src/stactools/landsat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"