Skip to content

Commit da19286

Browse files
committed
release: bump versions to 0.6
1 parent 3a5074d commit da19286

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ All notable changes to this project will be documented in this file.
1212
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1313
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1414

15-
## [Unreleased](https://github.com/KDAB/cxx-qt/compare/v0.5.3...HEAD)
15+
## [Unreleased](https://github.com/KDAB/cxx-qt/compare/v0.6.0...HEAD)
16+
17+
## [0.6.0](https://github.com/KDAB/cxx-qt/compare/v0.5.3...v0.6.0) - 2023-11-17
1618

1719
### Added
1820

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ resolver = "2"
2727
edition = "2021"
2828
license = "MIT OR Apache-2.0"
2929
repository = "https://github.com/KDAB/cxx-qt/"
30-
version = "0.5.3"
30+
version = "0.6.0"
3131

3232
# Note a version needs to be specified on dependencies of packages
3333
# we publish, otherwise crates.io complains as it doesn't know the version.
3434
[workspace.dependencies]
3535
cxx-qt = { path = "crates/cxx-qt" }
3636
cxx-qt-macro = { path = "crates/cxx-qt-macro" }
3737
cxx-qt-build = { path = "crates/cxx-qt-build" }
38-
cxx-qt-gen = { path = "crates/cxx-qt-gen", version = "0.5.3" }
38+
cxx-qt-gen = { path = "crates/cxx-qt-gen", version = "0.6.0" }
3939
cxx-qt-lib = { path = "crates/cxx-qt-lib" }
40-
cxx-qt-lib-headers = { path = "crates/cxx-qt-lib-headers", version = "0.5.3" }
41-
qt-build-utils = { path = "crates/qt-build-utils", version = "0.5.3" }
40+
cxx-qt-lib-headers = { path = "crates/cxx-qt-lib-headers", version = "0.6.0" }
41+
qt-build-utils = { path = "crates/qt-build-utils", version = "0.6.0" }
4242

4343
cc = { version = "1.0.79", features = ["parallel"] }
4444
# Ensure that the example comments are kept in sync

examples/cargo_without_cmake/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ license = "MIT OR Apache-2.0"
2222

2323
# Use `cxx = "1.0.95"` here instead!
2424
cxx.workspace = true
25-
# Use `cxx-qt = "0.5"` here instead!
25+
# Use `cxx-qt = "0.6"` here instead!
2626
cxx-qt.workspace = true
27-
# Use `cxx-qt-lib = "0.5"` here instead!
27+
# Use `cxx-qt-lib = "0.6"` here instead!
2828
cxx-qt-lib.workspace = true
2929

3030
[build-dependencies]
31-
# Use `cxx-qt-build = "0.5"` here instead!
31+
# Use `cxx-qt-build = "0.6"` here instead!
3232
# The link_qt_object_files feature is required for statically linking Qt 6.
3333
cxx-qt-build = { workspace = true, features = [ "link_qt_object_files" ] }

examples/qml_minimal/rust/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ crate-type = ["staticlib"]
2626
[dependencies]
2727
# Use `cxx = "1.0.95"` here instead!
2828
cxx.workspace = true
29-
# Use `cxx-qt = "0.5"` here instead!
29+
# Use `cxx-qt = "0.6"` here instead!
3030
cxx-qt.workspace = true
31-
# Use `cxx-qt-lib = "0.5"` here instead!
31+
# Use `cxx-qt-lib = "0.6"` here instead!
3232
cxx-qt-lib.workspace = true
3333
# ANCHOR_END: book_dependencies
3434

3535
# cxx-qt-build generates C++ code from the `#[cxx_qt::bridge]` module
3636
# and compiles it together with the Rust static library
3737
# ANCHOR: book_build_dependencies
3838
[build-dependencies]
39-
# Use `cxx-qt-build = "0.5"` here instead!
39+
# Use `cxx-qt-build = "0.6"` here instead!
4040
cxx-qt-build.workspace = true
4141

4242
[features]

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cxx-qt",
3-
"version": "0.5",
3+
"version": "0.6",
44
"description": "Rust bindings for Qt using CXX",
55
"homepage": "https://kdab.github.io/cxx-qt/book/",
66
"license": "MIT OR Apache-2.0",

0 commit comments

Comments
 (0)