Skip to content

Commit

Permalink
Merge remote-tracking branch 'original/main' into guhidalgo/nonumpyin…
Browse files Browse the repository at this point in the history
…centroid
  • Loading branch information
ghidalgo3 committed Feb 1, 2024
2 parents 45858ee + 984a60e commit 1912120
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up conda cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/conda_pkgs_dir
key: ${{ runner.os }}-conda-${{ hashFiles('**/environment.yml') }}
restore-keys: ${{ runner.os }}-conda-
- name: Set up pip cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.cfg', '**/requirements-dev.txt') }}
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- STAC item centroid uses Python `float` instead of `numpy.float64`.

## [v0.5.0]
## [v0.5.0] - 2024-01-17

### Added

Expand Down Expand Up @@ -53,7 +53,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

First release as a stand-alone repository.

[Unreleased]: https://github.com/stactools-packages/naip/compare/v0.4.0..main
[Unreleased]: https://github.com/stactools-packages/naip/compare/v0.5.0..main
[v0.4.0]: https://github.com/stactools-packages/naip/compare/v0.4.0..v0.5.0
[v0.4.0]: https://github.com/stactools-packages/naip/compare/v0.3.2..v0.4.0
[v0.3.2]: https://github.com/stactools-packages/naip/compare/v0.3.1..v0.3.2
[v0.3.1]: https://github.com/stactools-packages/naip/compare/v0.3.0..v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stac naip create-item --fgdc m_3707763_se_18_060_20180825.txt \
## Development

```shell
pip install -r requirements-dev.txt
pip install -e .[dev]
```


Expand Down
2 changes: 1 addition & 1 deletion src/stactools/naip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ def register_plugin(registry):
registry.register_subcommand(commands.create_naip_command)


__version__ = "0.4.0"
__version__ = "0.5.0"

0 comments on commit 1912120

Please sign in to comment.