diff --git a/CHANGELOG.md b/CHANGELOG.md index bd6c9dffa..979f0507b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## `file_type` - [0.2.2](https://github.com/theseus-rs/file-type/compare/file_type-v0.2.1...file_type-v0.2.2) - 2025-01-11 + +### Added +- update linguist definitions + +### Fixed +- correct liquist extension lookup failures by removing the preceeding . from the extensions + +### Other +- ignore tests failing on Windows + ## `file_type` - [0.2.1](https://github.com/theseus-rs/file-type/compare/file_type-v0.2.0...file_type-v0.2.1) - 2025-01-08 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index a6039ac9c..ab7c10001 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -46,7 +46,7 @@ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "apache_httpd" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "file_type", @@ -326,7 +326,7 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "file_type" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "criterion", @@ -850,7 +850,7 @@ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "linguist" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "file_type", @@ -1145,7 +1145,7 @@ dependencies = [ [[package]] name = "pronom" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "file_type", diff --git a/Cargo.toml b/Cargo.toml index 3bde14cd4..394136494 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.84.0" -version = "0.2.1" +version = "0.2.2" [workspace.dependencies] anyhow = "1.0.95" diff --git a/export/httpd/Cargo.toml b/export/httpd/Cargo.toml index ddcccf7c3..57f6579f0 100644 --- a/export/httpd/Cargo.toml +++ b/export/httpd/Cargo.toml @@ -7,7 +7,7 @@ version.workspace = true [dependencies] anyhow = { workspace = true } -file_type = { path = "../../file_type", version = "0.2.1" } +file_type = { path = "../../file_type", version = "0.2.2" } jiff = { workspace = true, features = ["serde"] } reqwest = { workspace = true } quick-xml = { workspace = true, features = ["serde", "serialize"] } diff --git a/export/linguist/Cargo.toml b/export/linguist/Cargo.toml index 6f3b8726f..9c4a3d9c9 100644 --- a/export/linguist/Cargo.toml +++ b/export/linguist/Cargo.toml @@ -7,7 +7,7 @@ version.workspace = true [dependencies] anyhow = { workspace = true } -file_type = { path = "../../file_type", version = "0.2.1" } +file_type = { path = "../../file_type", version = "0.2.2" } jiff = { workspace = true, features = ["serde"] } reqwest = { workspace = true } quick-xml = { workspace = true, features = ["serde", "serialize"] } diff --git a/export/pronom/Cargo.toml b/export/pronom/Cargo.toml index 39a65504c..116fd14a3 100644 --- a/export/pronom/Cargo.toml +++ b/export/pronom/Cargo.toml @@ -7,7 +7,7 @@ version.workspace = true [dependencies] anyhow = { workspace = true } -file_type = { path = "../../file_type", version = "0.2.1" } +file_type = { path = "../../file_type", version = "0.2.2" } rayon = { workspace = true } reqwest = { workspace = true, features = ["blocking"] } quick-xml = { workspace = true, features = ["serde", "serialize"] }