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
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/dacort/s3grep/releases/tag/v0.1.0) - 2025-07-07

### Added

- publish 🚀

### Other

- Use the official setup-localstack action
- Detect binary files, fail early if binary and a match :)
- Add byte progress
- Clean up err output
- Add gzip support and lint
- Initial revision
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
repository = "https://github.com/dacort/s3grep"
homepage = "https://github.com/dacort/s3grep"
keywords = ["s3", "grep", "aws", "cli", "logs"]
categories = ["command-line-utilities", "text-processing", "cloud"]
categories = ["command-line-utilities", "text-processing", "filesystem"]
publish = true

[dependencies]
Expand All @@ -22,4 +22,4 @@ structopt = "0.3"
colored = "2.0"
indicatif = "0.17"
async-compression = { version = "0.3.12", features = ["tokio", "gzip"] }
anyhow = "1.0"
anyhow = "1.0"
Loading