Skip to content

Commit

Permalink
Version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shssoichiro committed Oct 4, 2020
1 parent 987f912 commit 52df778
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 18 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/target
**/*.rs.bk
/.idea
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Version 0.6.0
- [Breaking] Simplify the `Decoder` trait
- [Breaking] Require `Send + Sync` on the `Decoder` trait
- Many performance and multi-threading improvements

## Version 0.5.1
- Remove unneeded library specifiers that were previously needed by cargo-c

Expand Down
28 changes: 14 additions & 14 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 @@ -9,4 +9,4 @@ members = [
opt-level = 1

[replace]
"av-metrics:0.5.1" = { path = "av_metrics" }
"av-metrics:0.6.0" = { path = "av_metrics" }
3 changes: 2 additions & 1 deletion av_metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "av-metrics"
version = "0.5.1"
version = "0.6.0"
authors = ["Josh Holmer <[email protected]>"]
edition = "2018"
description = "A collection of algorithms for measuring audio/video metrics"
Expand Down Expand Up @@ -35,3 +35,4 @@ bench = false
[[bench]]
name = "bench"
harness = false
path = "benches/bench.rs"
4 changes: 2 additions & 2 deletions av_metrics_tool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "av-metrics-tool"
version = "0.5.1"
version = "0.6.0"
authors = ["Josh Holmer <[email protected]>"]
edition = "2018"
description = "A CLI tool for measuring audio/video metrics"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/rust-av/av-metrics"
include = ["src/**/*"]

[dependencies]
av-metrics = { version = "0.5", features = ["serde"] }
av-metrics = { version = "0.6", features = ["serde"] }
clap = "2.33"
maplit = "1"
serde = "1"
Expand Down

0 comments on commit 52df778

Please sign in to comment.