Skip to content

Commit

Permalink
chore: release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 3, 2025
1 parent c8163bb commit bc7efe5
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 12 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## `file_type` - [0.5.0](https://github.com/theseus-rs/file-type/compare/v0.4.1...v0.5.0) - 2025-02-03

### Added
- add IANA media types

### Other
- add comparison benchmarks
- [**breaking**] reduce FileType::file_format() visibility to pub(crate)
- improve test coverage
- [**breaking**] update pronom ids to be prefixed with pronom/ instead of fmt/ or x-fmt/
- optimize signature matching
- update FileType to use a reference to FileFormat to avoid unnecessary clone
- remove walkdir
- add wikidata to readme

## `file_type` - [0.4.1](https://github.com/theseus-rs/file-type/compare/v0.4.0...v0.4.1) - 2025-02-01

### Added
Expand Down
12 changes: 6 additions & 6 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
Expand Up @@ -25,7 +25,7 @@ keywords = ["file", "file-type", "format"]
license = "(Apache-2.0 OR MIT) AND OGL-UK-3.0"
repository = "https://github.com/theseus-rs/file-type"
rust-version = "1.84.0"
version = "0.4.1"
version = "0.5.0"

[workspace.dependencies]
anyhow = "1.0.95"
Expand Down
2 changes: 1 addition & 1 deletion export/httpd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version.workspace = true

[dependencies]
anyhow = { workspace = true }
file_type = { path = "../../file_type", version = "0.4.1" }
file_type = { path = "../../file_type", version = "0.5.0" }
reqwest = { workspace = true }
tokio = { workspace = true, features = ["full"]}
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion export/iana/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version.workspace = true
[dependencies]
anyhow = { workspace = true }
csv = { workspace = true }
file_type = { path = "../../file_type", version = "0.4.1" }
file_type = { path = "../../file_type", version = "0.5.0" }
reqwest = { workspace = true }
tokio = { workspace = true, features = ["full"]}
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion export/linguist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version.workspace = true

[dependencies]
anyhow = { workspace = true }
file_type = { path = "../../file_type", version = "0.4.1" }
file_type = { path = "../../file_type", version = "0.5.0" }
reqwest = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion export/pronom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version.workspace = true

[dependencies]
anyhow = { workspace = true }
file_type = { path = "../../file_type", version = "0.4.1" }
file_type = { path = "../../file_type", version = "0.5.0" }
quick-xml = { workspace = true, features = ["serde", "serialize"] }
rayon = { workspace = true }
reqwest = { workspace = true, features = ["blocking"] }
Expand Down
2 changes: 1 addition & 1 deletion export/wikidata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version.workspace = true

[dependencies]
anyhow = { workspace = true }
file_type = { path = "../../file_type", version = "0.4.1" }
file_type = { path = "../../file_type", version = "0.5.0" }
reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down

0 comments on commit bc7efe5

Please sign in to comment.