Bump version number to 0.2.5

This commit is contained in:
ogoffart 2022-05-09 16:16:00 +00:00
parent 3e0534d9e3
commit 3709ded44d
53 changed files with 97 additions and 97 deletions

View file

@ -217,7 +217,7 @@ configure_package_config_file("cmake/SlintConfig.cmake.in" "${CMAKE_CURRENT_BINA
write_basic_package_version_file(
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/Slint/SlintConfigVersion.cmake
VERSION 0.2.4
VERSION 0.2.5
COMPATIBILITY SameMinorVersion
)
@ -269,7 +269,7 @@ set(CPACK_PACKAGE_VENDOR "Slint")
set(CPACK_VERBATIM_VARIABLES true)
set(CPACK_PACKAGE_VERSION_MAJOR 0)
set(CPACK_PACKAGE_VERSION_MINOR 2)
set(CPACK_PACKAGE_VERSION_PATCH 4)
set(CPACK_PACKAGE_VERSION_PATCH 5)
set(CPACK_PACKAGE_HOMEPAGE_URL "https://slint-ui.com")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/../../LICENSE.md")
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/README.md")

View file

@ -3,7 +3,7 @@
[package]
name = "slint-cpp"
version = "0.2.4"
version = "0.2.5"
authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
build = "build.rs"
@ -35,13 +35,13 @@ rtti-gl = ["i-slint-backend-selector/rtti-gl"]
default = ["backend-gl-all", "backend-qt"]
[dependencies]
i-slint-backend-selector = { version = "=0.2.4", path="../../internal/backends/selector" }
i-slint-backend-testing = { version = "=0.2.4", path="../../internal/backends/testing", optional = true }
i-slint-core = { version = "=0.2.4", path="../../internal/core", features = ["ffi"] }
slint-interpreter = { version = "=0.2.4", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-0-2-0"], optional = true }
i-slint-backend-selector = { version = "=0.2.5", path="../../internal/backends/selector" }
i-slint-backend-testing = { version = "=0.2.5", path="../../internal/backends/testing", optional = true }
i-slint-core = { version = "=0.2.5", path="../../internal/core", features = ["ffi"] }
slint-interpreter = { version = "=0.2.5", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-0-2-0"], optional = true }
[build-dependencies]
anyhow = "1.0"
cbindgen = "0.23"
proc-macro2 = "1.0.11"
i-slint-common = { version = "=0.2.4", path="../../internal/common" }
i-slint-common = { version = "=0.2.5", path="../../internal/common" }

View file

@ -26,7 +26,7 @@ copyright = "2022, info@slint-ui.com"
author = "info@slint-ui.com"
# The full version, including alpha/beta/rc tags
version = "0.2.4"
version = "0.2.5"
cpp_index_common_prefix = ["slint::", "slint::interpreter::"]