diff --git a/CHANGELOG.md b/CHANGELOG.md index eb327413..0f7bfbf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## 0.2.5 2021-11-19 + + - Completed QColor API + - Added wrapper around QJSon* types, QPainter, QPen, QBrush, QLineF + - Added QQuickPaintedItem + - Fixes to the qttype build script + ## 0.2.4 2021-09-30 - Fixed build with Qt < 5.8 and >= 6.2 diff --git a/qmetaobject/Cargo.toml b/qmetaobject/Cargo.toml index eebfe3e2..02d6314b 100644 --- a/qmetaobject/Cargo.toml +++ b/qmetaobject/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qmetaobject" -version = "0.2.4" +version = "0.2.5" edition = "2018" authors = ["Olivier Goffart "] build = "build.rs" @@ -17,8 +17,8 @@ chrono_qdatetime = ["qttypes/chrono"] webengine = ["qttypes/qtwebengine"] [dependencies] -qttypes = { path = "../qttypes", version = "0.2.4", features = ["qtquick"] } -qmetaobject_impl = { path = "../qmetaobject_impl", version = "=0.2.4"} +qttypes = { path = "../qttypes", version = "0.2.5", features = ["qtquick"] } +qmetaobject_impl = { path = "../qmetaobject_impl", version = "=0.2.5"} lazy_static = "1.0" cpp = "0.5.6" log = { version = "0.4", optional = true } diff --git a/qmetaobject_impl/Cargo.toml b/qmetaobject_impl/Cargo.toml index 24fa7cfb..2a22123c 100644 --- a/qmetaobject_impl/Cargo.toml +++ b/qmetaobject_impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qmetaobject_impl" -version = "0.2.4" +version = "0.2.5" edition = "2018" authors = ["Olivier Goffart "] description = "Custom derive for the qmetaobject crate." diff --git a/qttypes/Cargo.toml b/qttypes/Cargo.toml index d2b2f204..75af5736 100644 --- a/qttypes/Cargo.toml +++ b/qttypes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qttypes" -version = "0.2.4" +version = "0.2.5" edition = "2018" authors = ["Olivier Goffart "] build = "build.rs"