Skip to content

Commit

Permalink
Bump version to 0.15.1+ffmpeg.7.0 (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
ldm0 authored Jun 18, 2024
1 parent 7592176 commit b1f9bee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsmpeg"
version = "0.15.0+ffmpeg.7.0"
version = "0.15.1+ffmpeg.7.0"
authors = ["liudingming <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b1f9bee

Please sign in to comment.