From b1f9bee548c4e5d7413c435e663a81eb0719e2a4 Mon Sep 17 00:00:00 2001 From: Donough Liu Date: Tue, 18 Jun 2024 14:07:39 +0800 Subject: [PATCH] Bump version to `0.15.1+ffmpeg.7.0` (#185) --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa36515..fc9235b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.15.1 + +- `impl Send` for macro generated types. + ## 0.15.0 - Add FFmpeg `7.*` support; Remove FFmpeg `4.*` and `5.*` support diff --git a/Cargo.toml b/Cargo.toml index c27e9c4..77bf249 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsmpeg" -version = "0.15.0+ffmpeg.7.0" +version = "0.15.1+ffmpeg.7.0" authors = ["liudingming "] edition = "2021" license = "MIT" diff --git a/README.md b/README.md index 09620a1..c1959e2 100644 --- a/README.md +++ b/README.md @@ -112,9 +112,9 @@ Start by adding `rsmpeg` to your `Cargo.toml` file: ```toml [dependencies] # Add this if you are using ffmpeg 6.* -rsmpeg = { version = "0.15.0", default-features = false, features = ["ffmpeg6"] } +rsmpeg = { version = "0.15.1", default-features = false, features = ["ffmpeg6"] } # Add this if you are using ffmpeg 7.* (feature `ffmpeg7` is enabled by default) -rsmpeg = "0.15.0" +rsmpeg = "0.15.1" ``` Write your simple media file info dumper: