Bump version

This commit is contained in:
Zen 2021-09-11 21:24:58 +03:00
parent e63ae64606
commit 782f74982b
4 changed files with 19 additions and 11 deletions

6
Cargo.lock generated
View file

@ -160,7 +160,7 @@ dependencies = [
[[package]]
name = "av1an"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"anyhow",
"av1an-cli",
@ -175,7 +175,7 @@ dependencies = [
[[package]]
name = "av1an-cli"
version = "0.1.1"
version = "0.2.0"
dependencies = [
"anyhow",
"av1an-core",
@ -190,7 +190,7 @@ dependencies = [
[[package]]
name = "av1an-core"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"anyhow",
"av-format",

View file

@ -1,6 +1,6 @@
[package]
name = "av1an"
version = "0.1.0"
version = "0.2.0"
authors = ["Zen <master_of_zen@protonmail.com>"]
description = """
Cross-platform command-line AV1 / VP9 / HEVC / H264 encoding framework with per scene quality encoding
@ -23,8 +23,8 @@ shlex = "1.0.0"
ctrlc = "3.1.9"
path_abs = "0.5.1"
structopt = "0.3.22"
av1an-cli = { path = "av1an-cli", version = "0.1.1" }
av1an-core = { path = "av1an-core", version = "0.1.0" }
av1an-cli = { path = "av1an-cli", version = "0.2.0" }
av1an-core = { path = "av1an-core", version = "0.2.0" }
[features]
default = ["vapoursynth_new_api"]

View file

@ -1,6 +1,6 @@
[package]
name = "av1an-cli"
version = "0.1.1"
version = "0.2.0"
authors = ["Zen <master_of_zen@protonmail.com>"]
description = """
Cross-platform command-line AV1 / VP9 / HEVC / H264 encoding framework with per scene quality encoding [Command line library]
@ -17,11 +17,16 @@ shlex = "1.0.0"
ctrlc = "3.1.9"
path_abs = "0.5.1"
anyhow = "1.0.42"
av1an-core = { path = "../av1an-core", version = "0.1.0" }
av1an-core = { path = "../av1an-core", version = "0.2.0" }
thiserror = "1.0.30"
[build-dependencies]
vergen = { version = "5", default-features = false, features = ["git", "build", "rustc", "cargo"] }
vergen = { version = "5", default-features = false, features = [
"git",
"build",
"rustc",
"cargo",
] }
[dependencies.ffmpeg-next]
version = "4.4.0"

View file

@ -1,6 +1,6 @@
[package]
name = "av1an-core"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
authors = ["Zen <master_of_zen@protonmail.com>"]
description = """
@ -63,4 +63,7 @@ features = ["serde"]
[features]
ffmpeg_static = ["ffmpeg-next/static", "ffmpeg-next/build"]
vapoursynth_new_api = ["vapoursynth/vapoursynth-api-32", "vapoursynth/vsscript-api-31"]
vapoursynth_new_api = [
"vapoursynth/vapoursynth-api-32",
"vapoursynth/vsscript-api-31",
]