Skip to content

Commit 52df778

Browse files
committed
Version 0.6.0
1 parent 987f912 commit 52df778

File tree

6 files changed

+25
-18
lines changed

6 files changed

+25
-18
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/target
22
**/*.rs.bk
3+
/.idea

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Version 0.6.0
2+
- [Breaking] Simplify the `Decoder` trait
3+
- [Breaking] Require `Send + Sync` on the `Decoder` trait
4+
- Many performance and multi-threading improvements
5+
16
## Version 0.5.1
27
- Remove unneeded library specifiers that were previously needed by cargo-c
38

Cargo.lock

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ members = [
99
opt-level = 1
1010

1111
[replace]
12-
"av-metrics:0.5.1" = { path = "av_metrics" }
12+
"av-metrics:0.6.0" = { path = "av_metrics" }

av_metrics/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "av-metrics"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Josh Holmer <[email protected]>"]
55
edition = "2018"
66
description = "A collection of algorithms for measuring audio/video metrics"
@@ -35,3 +35,4 @@ bench = false
3535
[[bench]]
3636
name = "bench"
3737
harness = false
38+
path = "benches/bench.rs"

av_metrics_tool/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "av-metrics-tool"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Josh Holmer <[email protected]>"]
55
edition = "2018"
66
description = "A CLI tool for measuring audio/video metrics"
@@ -9,7 +9,7 @@ repository = "https://github.com/rust-av/av-metrics"
99
include = ["src/**/*"]
1010

1111
[dependencies]
12-
av-metrics = { version = "0.5", features = ["serde"] }
12+
av-metrics = { version = "0.6", features = ["serde"] }
1313
clap = "2.33"
1414
maplit = "1"
1515
serde = "1"

0 commit comments

Comments
 (0)