Skip to content
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: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.5.4] - 2025-02-19

### Added

- CLI ([#46](https://github.com/stac-utils/stacrs/pull/46))
- Config args to DuckDB client ([#42](https://github.com/stac-utils/stacrs/pull/42))

## [0.5.3] - 2025-02-07

### Changed
Expand Down Expand Up @@ -125,7 +132,8 @@ Non-functional release to fix releasing from Github actions.

Initial release.

[Unreleased]: https://github.com/gadomski/stacrs/compare/v0.5.3...main
[Unreleased]: https://github.com/gadomski/stacrs/compare/v0.5.4...main
[0.5.4]: https://github.com/gadomski/stacrs/compare/v0.5.3...v0.5.4
[0.5.3]: https://github.com/gadomski/stacrs/compare/v0.5.2...v0.5.3
[0.5.2]: https://github.com/gadomski/stacrs/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/gadomski/stacrs/compare/v0.5.0...v0.5.1
Expand Down
121 changes: 83 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stacrs"
version = "0.5.4-rc.0"
version = "0.5.4"
edition = "2021"
publish = false

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,9 @@ In particular, our [example notebook](https://stac-utils.github.io/stacrs/latest

## CLI

We have a pip-installable command-line interface (CLI) that exposes much of the same functionality:
**stacrs** comes with a CLI:

```shell
$ python -m pip install stacrs-cli
$ stacrs -h
stacrs: A command-line interface for the SpatioTemporal Asset Catalog (STAC)

Expand Down Expand Up @@ -105,7 +104,8 @@ Options:
Print help (see more with '--help')
```

The code for the CLI lives in the [stac-rs](https://github.com/stac-utils/stac-rs) repo, so please open any issues or feature requests over there, if possible.
> [!NOTE]
> Before **stacrs** v0.5.4, the CLI was its own PyPI package named **stacrs-cli**, which is no longer needed.

## Comparisons

Expand Down
Loading