From 9ec2c0c1ddf256a5f5f8a10f077c96943da323c5 Mon Sep 17 00:00:00 2001 From: Gerwin van der Lugt Date: Fri, 30 Aug 2024 12:00:43 +0200 Subject: [PATCH] bump version to 0.9 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b5bbb5e..5ff43cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "video-rs" description = "High-level video toolkit based on ffmpeg." keywords = ["video", "ffmpeg", "encoding", "decoding", "muxing"] categories = ["multimedia", "multimedia::video"] -version = "0.8.1" +version = "0.9.0" authors = ["Oddity.ai Developers "] license = "MIT OR Apache-2.0" edition = "2021" diff --git a/README.md b/README.md index b31180b..a5ffd6f 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,14 @@ on this (`video-rs` depends on the `ffmpeg-next` crate). Then, add the following to your dependencies in `Cargo.toml`: ```toml -video-rs = "0.8" +video-rs = "0.9" ``` Use the `ndarray` feature to be able to use raw frames with the [`ndarray`](https://github.com/rust-ndarray/ndarray) crate: ```toml -video-rs = { version = "0.8", features = ["ndarray"] } +video-rs = { version = "0.9", features = ["ndarray"] } ``` ## 📖 Examples