diff --git a/Cargo.toml b/Cargo.toml index ee9ab53..ae1a338 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,19 +1,19 @@ [package] name = "rust_qt_binding_generator" -version = "0.2.2" +version = "0.3.0" authors = ["Jos van den Oever "] description = "Generate code to build Qt applications with Rust" license = "AGPL-3.0-or-later" documentation = "https://phabricator.kde.org/source/rust-qt-binding-generator/" homepage = "https://phabricator.kde.org/source/rust-qt-binding-generator/" repository = "https://anongit.kde.org/rust-qt-binding-generator" [dependencies] cc = { version = "1", features = ["parallel"] } clap = "2" regex= "1" serde = "1.0" +serde-xml-rs = "0.2.1" serde_derive = "1.0" serde_json = "1.0" -serde-xml-rs = "0.2.1" toml = "0.4.10" diff --git a/ChangeLog b/ChangeLog index 858cc5f..536223b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,13 +1,15 @@ +0.3.0 (2019-01-21) + - Add function to Build to choose Qt modules to link to 0.2.2 (2018-12-10) - Fix build with rust <= 1.30 0.2.1 (2018-12-10) - Fix generated code for use with Rust edition 2018 (Owen Nelson, bug 401913) - Fix building with MSVC (bug 400716) 0.2.0 (2018-10-29) - Fix building with Cargo on Windows with MSVC (bug 400393) - Change generated API to avoid concurrent mutable and immutable references via callbacks into C++ 0.1.0 (2018-10-10) - Port to Rust - Publish as crate - Add tools to build