Skip to content

Commit 0d327eb

Browse files
authored
v0.3.0 release (#51)
1 parent ddf854a commit 0d327eb

File tree

3 files changed

+31
-8
lines changed

3 files changed

+31
-8
lines changed

.pre-commit-config.yaml

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

44
repos:
55
- repo: https://github.com/psf/black
6-
rev: 22.3.0
6+
rev: 22.12.0
77
hooks:
88
- id: black
99
- repo: https://github.com/codespell-project/codespell
10-
rev: v2.1.0
10+
rev: v2.2.2
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: 4.0.1
16+
rev: 6.0.0
1717
hooks:
1818
- id: flake8
1919
- repo: https://github.com/pre-commit/mirrors-mypy
20-
rev: v0.950
20+
rev: v0.991
2121
hooks:
2222
- id: mypy
2323
additional_dependencies:
2424
- click != 8.1.0
2525
- stactools
2626
- types-python-dateutil
2727
- repo: https://github.com/pycqa/isort
28-
rev: 5.10.1
28+
rev: 5.11.4
2929
hooks:
3030
- id: isort
3131
- repo: https://github.com/igorshubovych/markdownlint-cli
32-
rev: v0.32.1
32+
rev: v0.33.0
3333
hooks:
3434
- id: markdownlint

CHANGELOG.MD

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,28 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

99
### Added
1010

11+
Nothing.
12+
13+
### Removed
14+
15+
Nothing.
16+
17+
### Changed
18+
19+
Nothing.
20+
21+
### Fixed
22+
23+
Nothing.
24+
25+
### Deprecated
26+
27+
Nothing.
28+
29+
## [0.3.0] - 2022-10-21
30+
31+
### Added
32+
1133
- "emissivity" to `roles` list on the `emis` and `emsd` assets ([#47](https://github.com/stactools-packages/landsat/pull/47))
1234

1335
### Removed
@@ -92,7 +114,8 @@ NOTE: For backwards compatibility, all items under the Added, Changed, and Fixed
92114

93115
- Upgrade to stactools 0.2.1.a2 (supporting PySTAC 1.0.0)
94116

95-
[Unreleased]: <https://github.com/stactools-packages/landsat/compare/v0.2.4..main>
117+
[Unreleased]: <https://github.com/stactools-packages/landsat/compare/v0.3.0..main>
118+
[0.3.0]: <https://github.com/stactools-packages/landsat/compare/v0.2.4..v0.3.0>
96119
[0.2.4]: <https://github.com/stactools-packages/landsat/compare/v0.2.3..v0.2.4>
97120
[0.2.3]: <https://github.com/stactools-packages/landsat/compare/v0.2.2..v0.2.3>
98121
[0.2.2]: <https://github.com/stactools-packages/landsat/compare/v0.2.1..v0.2.2>

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.2.4"
13+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)