From cd16f032469873e81b022816e0b0e308c63754ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Schleu=C3=9Fer?= Date: Wed, 15 Jul 2020 15:06:25 +0200 Subject: [PATCH] Release libmpv version 1.1.0 --- CHANGELOG.md | 3 +++ Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d8d215..65edc9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Changelog +## Version 1.1.0 +* Add an `MpvNode` that implements `GetData`, i.a. with `MpvNodeArrayIter` and `MpvNodeMapIter` variants that support e.g. properties `audio-parmas` and `playlist` + ## Version 1.0.1 * Use debug formatting in impl of `Display` trait for `Error` diff --git a/Cargo.toml b/Cargo.toml index 2958a68..ba3153a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ members = ["libmpv-sys"] [package] name = "libmpv" -version = "1.0.1" +version = "1.1.0" edition = "2018" authors = ["ParadoxSpiral "] license = "LGPL-2.1" @@ -32,7 +32,7 @@ keywords = ["media", "playback", "mpv", "libmpv"] [dependencies] -libmpv-sys = {version = "3"} +libmpv-sys = { version = "3" } [dev-dependencies] crossbeam = "0.7"