diff --git a/CHANGELOG.md b/CHANGELOG.md index 40ea23ae5..256185c5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/KDAB/cxx-qt/compare/v0.4.1...HEAD) +## [Unreleased](https://github.com/KDAB/cxx-qt/compare/v0.5.0...HEAD) + +## [0.5.0](https://github.com/KDAB/cxx-qt/compare/v0.4.1...v0.5.0) - 2023-03-08 ## Added diff --git a/Cargo.toml b/Cargo.toml index 2941610cb..812089b25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ members = [ edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/KDAB/cxx-qt/" -version = "0.4.1" +version = "0.5.0" [workspace.dependencies] cxx-qt = { path = "crates/cxx-qt" } diff --git a/examples/cargo_without_cmake/Cargo.toml b/examples/cargo_without_cmake/Cargo.toml index 7ec84d84f..4baf11f89 100644 --- a/examples/cargo_without_cmake/Cargo.toml +++ b/examples/cargo_without_cmake/Cargo.toml @@ -20,12 +20,12 @@ license = "MIT OR Apache-2.0" [dependencies] # Use `cxx = "1.0.83"` here instead! cxx.workspace = true -# Use `cxx-qt = "0.4"` here instead! +# Use `cxx-qt = "0.5"` here instead! cxx-qt.workspace = true -# Use `cxx-qt-lib = "0.4"` here instead! +# Use `cxx-qt-lib = "0.5"` here instead! cxx-qt-lib.workspace = true [build-dependencies] -# Use `cxx-qt-build = "0.4"` here instead! +# Use `cxx-qt-build = "0.5"` here instead! cxx-qt-build.workspace = true # ANCHOR_END: book_cargo_toml_no_cmake diff --git a/examples/qml_minimal/rust/Cargo.toml b/examples/qml_minimal/rust/Cargo.toml index 4766ad119..ed6fccd4f 100644 --- a/examples/qml_minimal/rust/Cargo.toml +++ b/examples/qml_minimal/rust/Cargo.toml @@ -26,9 +26,9 @@ crate-type = ["staticlib"] [dependencies] # Use `cxx = "1.0.83"` here instead! cxx.workspace = true -# Use `cxx-qt = "0.4"` here instead! +# Use `cxx-qt = "0.5"` here instead! cxx-qt.workspace = true -# Use `cxx-qt-lib = "0.4"` here instead! +# Use `cxx-qt-lib = "0.5"` here instead! cxx-qt-lib.workspace = true # ANCHOR_END: book_dependencies @@ -36,7 +36,7 @@ cxx-qt-lib.workspace = true # and compiles it together with the Rust static library # ANCHOR: book_build_dependencies [build-dependencies] -# Use `cxx-qt-build = "0.4"` here instead! +# Use `cxx-qt-build = "0.5"` here instead! cxx-qt-build.workspace = true # ANCHOR_END: book_build_dependencies diff --git a/vcpkg.json b/vcpkg.json index 2abfa05c2..bc411a87b 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,6 +1,6 @@ { "name": "cxx-qt", - "version": "0.4", + "version": "0.5", "description": "Rust bindings for Qt using CXX", "homepage": "https://kdab.github.io/cxx-qt/book/", "license": "MIT OR Apache-2.0",