Skip to content

Commit 666fd73

Browse files
committed
cargo: bump version to 0.8.1
1 parent e7b6903 commit 666fd73

File tree

4 files changed

+27
-18
lines changed

4 files changed

+27
-18
lines changed

CHANGELOG.md

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

18-
## [Unreleased](https://github.com/KDAB/cxx-qt/compare/v0.8.0...HEAD)
18+
## [Unreleased](https://github.com/KDAB/cxx-qt/compare/v0.8.1...HEAD)
19+
20+
## [0.8.1](https://github.com/KDAB/cxx-qt/compare/v0.8.0...v0.8.1) - 2026-02-16
21+
22+
### Fixed
23+
24+
- Skip empty line at the end of rcc output
25+
- Fully qualify Pin in threading generation
26+
- Allow for dead_code on signal generation
27+
- Removed deprecated `doc_auto_cfg` configure attribute
1928

2029
## [0.8.0](https://github.com/KDAB/cxx-qt/compare/v0.7.2...v0.8.0) - 2025-12-18
2130

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ resolver = "2"
3535
edition = "2021"
3636
license = "MIT OR Apache-2.0"
3737
repository = "https://github.com/KDAB/cxx-qt/"
38-
version = "0.8.0"
38+
version = "0.8.1"
3939
rust-version = "1.77.2" # Clippy needs to >= 1.78.0 for a lint, but the package can be 1.77.2
4040

4141
# Note a version needs to be specified on dependencies of packages
4242
# we publish, otherwise crates.io complains as it doesn't know the version.
4343
[workspace.dependencies]
44-
cxx-qt = { path = "crates/cxx-qt", version = "0.8.0" }
45-
cxx-qt-macro = { path = "crates/cxx-qt-macro", version = "0.8.0" }
46-
cxx-qt-build = { path = "crates/cxx-qt-build", version = "0.8.0" }
47-
cxx-qt-gen = { path = "crates/cxx-qt-gen", version = "0.8.0" }
48-
cxx-qt-lib = { path = "crates/cxx-qt-lib", version = "0.8.0" }
49-
qt-build-utils = { path = "crates/qt-build-utils", version = "0.8.0" }
50-
cxx-qt-lib-extras = { path = "crates/cxx-qt-lib-extras", version = "0.8.0" }
44+
cxx-qt = { path = "crates/cxx-qt", version = "0.8.1" }
45+
cxx-qt-macro = { path = "crates/cxx-qt-macro", version = "0.8.1" }
46+
cxx-qt-build = { path = "crates/cxx-qt-build", version = "0.8.1" }
47+
cxx-qt-gen = { path = "crates/cxx-qt-gen", version = "0.8.1" }
48+
cxx-qt-lib = { path = "crates/cxx-qt-lib", version = "0.8.1" }
49+
qt-build-utils = { path = "crates/qt-build-utils", version = "0.8.1" }
50+
cxx-qt-lib-extras = { path = "crates/cxx-qt-lib-extras", version = "0.8.1" }
5151

5252
cc = { version = "1.0.100", features = ["parallel"] }
5353
# Ensure that the example comments are kept in sync

book/src/getting-started/5-cmake-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Download CXX-Qts CMake code with FetchContent:
134134

135135
```cmake,ignore
136136
{{#include ../../../examples/qml_minimal/CMakeLists.txt:book_cmake_find_cxx_qt_start}}
137-
GIT_TAG 0.8.0
137+
GIT_TAG 0.8.1
138138
{{#include ../../../examples/qml_minimal/CMakeLists.txt:book_cmake_find_cxx_qt_end}}
139139
```
140140

0 commit comments

Comments
 (0)