Bump version number to 1.0.3

This commit is contained in:
ogoffart 2023-04-26 14:04:08 +00:00
parent 8dcd98aee1
commit dfd5fc38b3
64 changed files with 120 additions and 120 deletions

View file

@ -303,7 +303,7 @@ cmake_language(DEFER CALL _slint_write_configure_file)
write_basic_package_version_file(
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/Slint/SlintConfigVersion.cmake
VERSION 1.0.2
VERSION 1.0.3
COMPATIBILITY SameMinorVersion
)
@ -356,7 +356,7 @@ set(CPACK_PACKAGE_VENDOR "Slint")
set(CPACK_VERBATIM_VARIABLES true)
set(CPACK_PACKAGE_VERSION_MAJOR 1)
set(CPACK_PACKAGE_VERSION_MINOR 0)
set(CPACK_PACKAGE_VERSION_PATCH 2)
set(CPACK_PACKAGE_VERSION_PATCH 3)
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 = "1.0.2"
version = "1.0.3"
authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
build = "build.rs"
@ -40,11 +40,11 @@ experimental = ["i-slint-renderer-skia", "raw-window-handle"]
default = ["backend-winit", "renderer-winit-femtovg", "backend-qt", "experimental"]
[dependencies]
i-slint-backend-selector = { version = "=1.0.2", path="../../internal/backends/selector" }
i-slint-backend-testing = { version = "=1.0.2", path="../../internal/backends/testing", optional = true }
i-slint-renderer-skia = { version = "=1.0.2", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] }
i-slint-core = { version = "=1.0.2", path="../../internal/core", features = ["ffi"] }
slint-interpreter = { version = "=1.0.2", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-1-0"], optional = true }
i-slint-backend-selector = { version = "=1.0.3", path="../../internal/backends/selector" }
i-slint-backend-testing = { version = "=1.0.3", path="../../internal/backends/testing", optional = true }
i-slint-renderer-skia = { version = "=1.0.3", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] }
i-slint-core = { version = "=1.0.3", path="../../internal/core", features = ["ffi"] }
slint-interpreter = { version = "=1.0.3", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-1-0"], optional = true }
raw-window-handle = { version = "0.5", optional = true }
# Enable image-rs' default features to make all image formats to C++ users
image = { version = "0.24.0" }
@ -53,4 +53,4 @@ image = { version = "0.24.0" }
anyhow = "1.0"
cbindgen = "0.24"
proc-macro2 = "1.0.11"
i-slint-common = { version = "=1.0.2", path="../../internal/common" }
i-slint-common = { version = "=1.0.3", path="../../internal/common" }

View file

@ -26,7 +26,7 @@ copyright = "SixtyFPS GmbH"
author = "Slint Developers <info@slint-ui.com>"
# The full version, including alpha/beta/rc tags
version = "1.0.2"
version = "1.0.3"
cpp_index_common_prefix = ["slint::", "slint::interpreter::"]