Skip to content

Commit 0bc54b9

Browse files
Merge pull request #24 from theseus-rs/release-plz-2025-01-05T04-18-52Z
chore: release v0.2.0
2 parents 329a880 + 74af308 commit 0bc54b9

File tree

6 files changed

+27
-8
lines changed

6 files changed

+27
-8
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## `file_type` - [0.2.0](https://github.com/theseus-rs/file-type/compare/file_type-v0.1.0...file_type-v0.2.0) - 2025-01-07
10+
11+
### Fixed
12+
- remove unused UnknownFileType
13+
14+
### Other
15+
- minor readme update
16+
- add links from the file type id to the format file
17+
- optimize variable byte sequence matching by performing BOF/EOF matches first
18+
- optimize signature classification
19+
- Merge pull request [#29](https://github.com/theseus-rs/file-type/pull/29) from theseus-rs/optimize-classification
20+
- minor refactor
21+
- add xml and yaml tests
22+
- update example documentation
23+
- ignore tests failing on Windows
24+
- ignore failing pronom classification tests
25+
- add ignored test cases for pronom file classification failures
26+
- add ignored test cases for pronom file classification failures
27+
928
## `file_type` - [0.1.0](https://github.com/theseus-rs/file-type/compare/file_type-v0.0.5...file_type-v0.1.0) - 2025-01-05
1029

1130
### Fixed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ keywords = ["file", "file-type", "format"]
2121
license = "(Apache-2.0 OR MIT) AND OGL-UK-3.0"
2222
repository = "https://github.com/theseus-rs/file-type"
2323
rust-version = "1.83.0"
24-
version = "0.1.0"
24+
version = "0.2.0"
2525

2626
[workspace.dependencies]
2727
anyhow = "1.0.95"

export/apache_httpd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version.workspace = true
77

88
[dependencies]
99
anyhow = { workspace = true }
10-
file_type = { path = "../../file_type", version = "0.1.0" }
10+
file_type = { path = "../../file_type", version = "0.2.0" }
1111
jiff = { workspace = true, features = ["serde"] }
1212
reqwest = { workspace = true }
1313
quick-xml = { workspace = true, features = ["serde", "serialize"] }

export/linguist/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version.workspace = true
77

88
[dependencies]
99
anyhow = { workspace = true }
10-
file_type = { path = "../../file_type", version = "0.1.0" }
10+
file_type = { path = "../../file_type", version = "0.2.0" }
1111
jiff = { workspace = true, features = ["serde"] }
1212
reqwest = { workspace = true }
1313
quick-xml = { workspace = true, features = ["serde", "serialize"] }

export/pronom/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version.workspace = true
77

88
[dependencies]
99
anyhow = { workspace = true }
10-
file_type = { path = "../../file_type", version = "0.1.0" }
10+
file_type = { path = "../../file_type", version = "0.2.0" }
1111
rayon = { workspace = true }
1212
reqwest = { workspace = true, features = ["blocking"] }
1313
quick-xml = { workspace = true, features = ["serde", "serialize"] }

0 commit comments

Comments
 (0)