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

## [Unreleased]

## `file_type` - [0.0.6](https://github.com/theseus-rs/file-type/compare/file_type-v0.0.5...file_type-v0.0.6) - 2025-01-05

### Fixed
- update default/1 to be binary, default/2 to be text and attempt to detect the default when no other file type could be determined

### Other
- correct lint error
- update documentation

## `file_type` - [0.0.5](https://github.com/theseus-rs/file-type/compare/file_type-v0.0.4...file_type-v0.0.5) - 2025-01-04

### Fixed
Expand Down
8 changes: 4 additions & 4 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 @@ -21,7 +21,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.83.0"
version = "0.0.5"
version = "0.0.6"

[workspace.dependencies]
anyhow = "1.0.95"
Expand Down
2 changes: 1 addition & 1 deletion export/apache_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.0.5" }
file_type = { path = "../../file_type", version = "0.0.6" }
jiff = { workspace = true, features = ["serde"] }
reqwest = { workspace = true }
quick-xml = { workspace = true, features = ["serde", "serialize"] }
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.0.5" }
file_type = { path = "../../file_type", version = "0.0.6" }
jiff = { workspace = true, features = ["serde"] }
reqwest = { workspace = true }
quick-xml = { workspace = true, features = ["serde", "serialize"] }
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.0.5" }
file_type = { path = "../../file_type", version = "0.0.6" }
rayon = { workspace = true }
reqwest = { workspace = true, features = ["blocking"] }
quick-xml = { workspace = true, features = ["serde", "serialize"] }
Expand Down