Skip to content

Commit 73e518b

Browse files
authored
release: v0.4.1 (#62)
1 parent 3b6c2cf commit 73e518b

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33

44
repos:
55
- repo: https://github.com/psf/black
6-
rev: 23.3.0
6+
rev: 23.7.0
77
hooks:
88
- id: black
99
- repo: https://github.com/codespell-project/codespell
10-
rev: v2.2.4
10+
rev: v2.2.5
1111
hooks:
1212
- id: codespell
1313
args: [--ignore-words=.codespellignore]
1414
types_or: [jupyter, markdown, python, shell]
1515
- repo: https://github.com/PyCQA/flake8
16-
rev: 6.0.0
16+
rev: 6.1.0
1717
hooks:
1818
- id: flake8
1919
- repo: https://github.com/pre-commit/mirrors-mypy
20-
rev: v1.2.0
20+
rev: v1.5.1
2121
hooks:
2222
- id: mypy
2323
additional_dependencies:
@@ -29,6 +29,6 @@ repos:
2929
hooks:
3030
- id: isort
3131
- repo: https://github.com/igorshubovych/markdownlint-cli
32-
rev: v0.33.0
32+
rev: v0.35.0
3333
hooks:
3434
- id: markdownlint

CHANGELOG.MD

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
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.
66

7+
## [Unreleased]
8+
9+
## [0.4.1] - 2023-08-20
10+
11+
### Added
12+
13+
- Create items from MTL text metadata ([#58](https://github.com/stactools-packages/landsat/pull/58))
14+
715
## [0.4.0] - 2023-08-03
816

917
### Added
@@ -99,6 +107,8 @@ NOTE: For backwards compatibility, all items under the Added, Changed, and Fixed
99107

100108
- Upgrade to stactools 0.2.1.a2 (supporting PySTAC 1.0.0)
101109

110+
[Unreleased]: <https://github.com/stactools-packages/landsat/compare/v0.4.1..main>
111+
[0.4.1]: <https://github.com/stactools-packages/landsat/compare/v0.4.0..v0.4.1>
102112
[0.4.0]: <https://github.com/stactools-packages/landsat/compare/v0.3.0..v0.4.0>
103113
[0.3.0]: <https://github.com/stactools-packages/landsat/compare/v0.2.4..v0.3.0>
104114
[0.2.4]: <https://github.com/stactools-packages/landsat/compare/v0.2.3..v0.2.4>

src/stactools/landsat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ def register_plugin(registry: Registry) -> None:
1010
registry.register_subcommand(commands.create_landsat_command)
1111

1212

13-
__version__ = "0.4.0"
13+
__version__ = "0.4.1"

0 commit comments

Comments
 (0)