diff --git a/Cargo.lock b/Cargo.lock index b30f13c..e515ed8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -535,7 +535,7 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "vvdec" -version = "0.5.0" +version = "0.5.1" dependencies = [ "thiserror", "vvdec-sys", @@ -543,7 +543,7 @@ dependencies = [ [[package]] name = "vvdec-sys" -version = "0.4.1-alpha.1" +version = "0.4.1" dependencies = [ "bindgen", "cmake", @@ -552,7 +552,7 @@ dependencies = [ [[package]] name = "vvdecli" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 09fbe7c..a6c1e0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vvdec" -version = "0.5.0" +version = "0.5.1" edition = "2021" authors = ["Carlos Bentzen "] description = "Rust bindings for VVdeC" @@ -10,7 +10,7 @@ exclude = ["tests/", ".devcontainer/", ".github/"] [dependencies] thiserror = "1" -vvdec-sys = { path = "./vvdec-sys", version = "0.4.1-alpha.1" } +vvdec-sys = { path = "./vvdec-sys", version = "0.4.1" } [workspace] members = ["vvdec-sys", "vvdecli"] diff --git a/vvdec-sys/Cargo.toml b/vvdec-sys/Cargo.toml index 1e89acd..e279b78 100644 --- a/vvdec-sys/Cargo.toml +++ b/vvdec-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vvdec-sys" -version = "0.4.1-alpha.1" +version = "0.4.1" edition = "2021" links = "vvdec" authors = ["Carlos Bentzen "] diff --git a/vvdecli/Cargo.toml b/vvdecli/Cargo.toml index c4fa30b..c9e82d0 100644 --- a/vvdecli/Cargo.toml +++ b/vvdecli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vvdecli" -version = "0.5.0" +version = "0.5.1" edition = "2021" authors = ["Carlos Bentzen "] description = "CLI application for decoding VVC bitstreams" @@ -12,7 +12,7 @@ exclude = ["tests/"] anyhow = "1" clap = { version = "4", features = ["derive"] } thiserror = "1" -vvdec = { path = "..", version = "0.5.0" } +vvdec = { path = "..", version = "0.5.1" } y4m = "0.8" [dev-dependencies]