Skip to content
Open
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.8](https://github.com/tgies/uls/compare/v0.1.7...v0.1.8) - 2026-07-25

### Other

- update Cargo.lock dependencies
- *(deps)* bump phf from 0.13.1 to 0.14.0

## [0.1.7](https://github.com/tgies/uls/compare/v0.1.6...v0.1.7) - 2026-07-24

### Added
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ gungraun = "0.19"

# Workspace crates
uls-core = { path = "crates/uls-core", version = "0.1.4" }
uls-parser = { path = "crates/uls-parser", version = "0.1.4" }
uls-db = { path = "crates/uls-db", version = "0.2.2" }
uls-parser = { path = "crates/uls-parser", version = "0.1.5" }
uls-db = { path = "crates/uls-db", version = "0.2.3" }
uls-download = { path = "crates/uls-download", version = "0.2.3" }
uls-api = { path = "crates/uls-api", version = "0.1.6" }
uls-query = { path = "crates/uls-query", version = "0.1.5" }
uls-api = { path = "crates/uls-api", version = "0.1.7" }
uls-query = { path = "crates/uls-query", version = "0.1.6" }

[profile.release]
lto = true
Expand Down
2 changes: 1 addition & 1 deletion crates/uls-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "uls-api"
description = "REST API server for FCC ULS data access"
version = "0.1.6"
version = "0.1.7"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/uls-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "uls-cli"
description = "CLI tool for FCC ULS data retrieval and management"
version = "0.1.7"
version = "0.1.8"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/uls-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "uls-db"
description = "SQLite database layer for FCC ULS data storage"
version = "0.2.2"
version = "0.2.3"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/uls-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "uls-parser"
description = "Parser for FCC ULS pipe-delimited DAT files"
version = "0.1.4"
version = "0.1.5"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/uls-query/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "uls-query"
description = "Query engine for FCC ULS data lookups"
version = "0.1.5"
version = "0.1.6"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
Loading