Skip to content

Commit

Permalink
release: bump versions to 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ahayzen-kdab committed Nov 17, 2023
1 parent 3a5074d commit da19286
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.3...HEAD)
## [Unreleased](https://github.com/KDAB/cxx-qt/compare/v0.6.0...HEAD)

## [0.6.0](https://github.com/KDAB/cxx-qt/compare/v0.5.3...v0.6.0) - 2023-11-17

### Added

Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ resolver = "2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/KDAB/cxx-qt/"
version = "0.5.3"
version = "0.6.0"

# Note a version needs to be specified on dependencies of packages
# we publish, otherwise crates.io complains as it doesn't know the version.
[workspace.dependencies]
cxx-qt = { path = "crates/cxx-qt" }
cxx-qt-macro = { path = "crates/cxx-qt-macro" }
cxx-qt-build = { path = "crates/cxx-qt-build" }
cxx-qt-gen = { path = "crates/cxx-qt-gen", version = "0.5.3" }
cxx-qt-gen = { path = "crates/cxx-qt-gen", version = "0.6.0" }
cxx-qt-lib = { path = "crates/cxx-qt-lib" }
cxx-qt-lib-headers = { path = "crates/cxx-qt-lib-headers", version = "0.5.3" }
qt-build-utils = { path = "crates/qt-build-utils", version = "0.5.3" }
cxx-qt-lib-headers = { path = "crates/cxx-qt-lib-headers", version = "0.6.0" }
qt-build-utils = { path = "crates/qt-build-utils", version = "0.6.0" }

cc = { version = "1.0.79", features = ["parallel"] }
# Ensure that the example comments are kept in sync
Expand Down
6 changes: 3 additions & 3 deletions examples/cargo_without_cmake/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ license = "MIT OR Apache-2.0"

# Use `cxx = "1.0.95"` here instead!
cxx.workspace = true
# Use `cxx-qt = "0.5"` here instead!
# Use `cxx-qt = "0.6"` here instead!
cxx-qt.workspace = true
# Use `cxx-qt-lib = "0.5"` here instead!
# Use `cxx-qt-lib = "0.6"` here instead!
cxx-qt-lib.workspace = true

[build-dependencies]
# Use `cxx-qt-build = "0.5"` here instead!
# Use `cxx-qt-build = "0.6"` here instead!
# The link_qt_object_files feature is required for statically linking Qt 6.
cxx-qt-build = { workspace = true, features = [ "link_qt_object_files" ] }
6 changes: 3 additions & 3 deletions examples/qml_minimal/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ crate-type = ["staticlib"]
[dependencies]
# Use `cxx = "1.0.95"` here instead!
cxx.workspace = true
# Use `cxx-qt = "0.5"` here instead!
# Use `cxx-qt = "0.6"` here instead!
cxx-qt.workspace = true
# Use `cxx-qt-lib = "0.5"` here instead!
# Use `cxx-qt-lib = "0.6"` here instead!
cxx-qt-lib.workspace = true
# ANCHOR_END: book_dependencies

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

[features]
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cxx-qt",
"version": "0.5",
"version": "0.6",
"description": "Rust bindings for Qt using CXX",
"homepage": "https://kdab.github.io/cxx-qt/book/",
"license": "MIT OR Apache-2.0",
Expand Down

0 comments on commit da19286

Please sign in to comment.