Skip to content

Commit

Permalink
release: v0.1.0 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski authored Sep 5, 2023
1 parent d03ef1e commit b54a903
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
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.1.0
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/codespell-project/codespell
rev: v2.2.2
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.0.1
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ number as needed.

## [Unreleased]

## [0.1.0] - 2023-08-31

### Changed

- `read_dimensions_and_variables` allows small differences in step size to be
Expand All @@ -19,5 +21,6 @@ number as needed.

Initial release

[Unreleased]: <https://github.com/stactools-packages/datacube/compare/v0.0.1..main>
[Unreleased]: <https://github.com/stactools-packages/datacube/compare/v0.1.0..main>
[0.1.0]: <https://github.com/stactools-packages/datacube/compare/v0.0.1..v0.1.0>
[0.0.1]: <https://github.com/stactools-packages/datacube/tree/v0.0.1/>
2 changes: 1 addition & 1 deletion src/stactools/datacube/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def register_plugin(registry: Registry) -> None:
registry.register_subcommand(commands.create_datacube_command)


__version__ = "0.0.1"
__version__ = "0.1.0"

0 comments on commit b54a903

Please sign in to comment.