Bump version number to 0.3.0

This commit is contained in:
ogoffart 2022-09-06 10:01:53 +00:00 committed by Olivier Goffart
parent 2760d96b79
commit 05a49da906
54 changed files with 98 additions and 98 deletions

View file

@ -293,7 +293,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.6
VERSION 0.3.0
COMPATIBILITY SameMinorVersion
)
@ -345,8 +345,8 @@ set(CPACK_PACKAGE_NAME "Slint-cpp")
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 6)
set(CPACK_PACKAGE_VERSION_MINOR 3)
set(CPACK_PACKAGE_VERSION_PATCH 0)
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.6"
version = "0.3.0"
authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
build = "build.rs"
@ -37,13 +37,13 @@ renderer-skia-opengl = ["i-slint-backend-selector/renderer-skia-opengl"]
default = ["eventloop-winit", "renderer-femtovg", "backend-qt"]
[dependencies]
i-slint-backend-selector = { version = "=0.2.6", path="../../internal/backends/selector" }
i-slint-backend-testing = { version = "=0.2.6", path="../../internal/backends/testing", optional = true }
i-slint-core = { version = "=0.2.6", path="../../internal/core", features = ["ffi"] }
slint-interpreter = { version = "=0.2.6", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-0-2-0"], optional = true }
i-slint-backend-selector = { version = "=0.3.0", path="../../internal/backends/selector" }
i-slint-backend-testing = { version = "=0.3.0", path="../../internal/backends/testing", optional = true }
i-slint-core = { version = "=0.3.0", path="../../internal/core", features = ["ffi"] }
slint-interpreter = { version = "=0.3.0", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-0-2-0"], optional = true }
[build-dependencies]
anyhow = "1.0"
cbindgen = "0.24"
proc-macro2 = "1.0.11"
i-slint-common = { version = "=0.2.6", path="../../internal/common" }
i-slint-common = { version = "=0.3.0", 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.6"
version = "0.3.0"
cpp_index_common_prefix = ["slint::", "slint::interpreter::"]