Skip to content

Commit

Permalink
chore: release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 10, 2025
1 parent 5dab35f commit 837d8d4
Show file tree
Hide file tree
Showing 11 changed files with 43 additions and 17 deletions.
16 changes: 8 additions & 8 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 @@ -31,7 +31,7 @@ keywords = ["file", "file-type", "format"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/theseus-rs/file-type"
rust-version = "1.84.0"
version = "0.6.0"
version = "0.7.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.6.0" }
file_type = { path = "../../file_type", version = "0.7.0" }
reqwest = { workspace = true, features = ["blocking"] }
source_generator = { path = "../source_generator", version = "0.1.0" }
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.6.0" }
file_type = { path = "../../file_type", version = "0.7.0" }
reqwest = { workspace = true, features = ["blocking"] }
source_generator = { path = "../source_generator", version = "0.1.0" }
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.6.0" }
file_type = { path = "../../file_type", version = "0.7.0" }
reqwest = { workspace = true, features = ["blocking"] }
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.6.0" }
file_type = { path = "../../file_type", version = "0.7.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/source_generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ version = "0.1.0"

[dependencies]
anyhow = { workspace = true }
file_type = { path = "../../file_type", version = "0.6.0" }
file_type = { path = "../../file_type", version = "0.7.0" }
tracing = { workspace = true }
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.6.0" }
file_type = { path = "../../file_type", version = "0.7.0" }
reqwest = { workspace = true, features = ["blocking", "json"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
26 changes: 26 additions & 0 deletions file_type/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.7.0](https://github.com/theseus-rs/file-type/compare/v0.6.0...v0.7.0) - 2025-02-10

### Added
- add no_std support

### Fixed
- suppress duplicate wikidata signatures
- address performance regression
- correct benchmark file path

### Other
- [**breaking**] remove tokio support
- refactor to use phf maps
- remove file types vector to reduce runtime memory utilization
- move file type document generation to test_data crate
- update test data generator to generate pronom test data
- create test data generation crate
2 changes: 1 addition & 1 deletion map_generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ version.workspace = true

[dependencies]
anyhow = { workspace = true }
file_type = { path = "../file_type", version = "0.6.0", features = ["all"] }
file_type = { path = "../file_type", version = "0.7.0", features = ["all"] }
phf = { workspace = true }
phf_codegen = { workspace = true }
2 changes: 1 addition & 1 deletion test_data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ version.workspace = true

[dependencies]
anyhow = { workspace = true }
file_type = { path = "../file_type", version = "0.6.0", features = ["pronom", "wikidata"] }
file_type = { path = "../file_type", version = "0.7.0", features = ["pronom", "wikidata"] }

0 comments on commit 837d8d4

Please sign in to comment.