From f3902a6e4bce402d1634de4ca21537369f3e93f6 Mon Sep 17 00:00:00 2001 From: Dzenan Jupic <56133904+DzenanJupic@users.noreply.github.com> Date: Wed, 9 Jun 2021 05:20:51 +0200 Subject: [PATCH] updated to 0.3.2 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- cli/Cargo.toml | 4 ++-- cli/src/args/mod.rs | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e020d5..bab5961 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.3.2 + +### Changed + +- made the `embed` field of `PlayerMicroformatRenderer` `Option<_>` + ## 0.2.3 ### Added diff --git a/Cargo.toml b/Cargo.toml index dc9310c..908070e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustube" -version = "0.3.1" +version = "0.3.2" authors = ["Dzenan Jupic "] edition = "2018" description = "A YouTube video downloader, originally inspired by pytube, written in Rust." diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 5d934dc..3f1393c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustube-cli" -version = "0.3.1" +version = "0.3.2" authors = ["Dzenan Jupic <56133904+DzenanJupic@users.noreply.github.com>"] edition = "2018" description = "A CLI for rustube" @@ -25,7 +25,7 @@ clap = "3.0.0-beta.2" fern = { version = "0.6.0", features = ["colored"] } log = "0.4.14" mime = "0.3.16" -rustube = { path = "..", version = "0.3.1", features = ["download", "std"] } +rustube = { path = "..", version = "0.3", features = ["download", "std"] } tokio = { version = "1.1.1", features = ["rt-multi-thread"] } serde = "1.0.123" strum = { version = "0.20.0", features = ["derive"] } diff --git a/cli/src/args/mod.rs b/cli/src/args/mod.rs index 88ac644..a4c1c9e 100644 --- a/cli/src/args/mod.rs +++ b/cli/src/args/mod.rs @@ -16,7 +16,7 @@ mod stream_filter; #[derive(Clap)] #[clap( -version = "0.3.1", +version = "0.3.2", about = "\n\ A simple CLI for the rustube YouTube-downloader library.\n\ For documentation and more information about rustube or the rustube-cli checkout \