Bump version number to 1.0.0

This commit is contained in:
ogoffart 2023-02-03 07:29:12 +00:00 committed by Olivier Goffart
parent 8e0a8ca5cf
commit e7f48512ee
58 changed files with 109 additions and 109 deletions

View file

@ -293,7 +293,7 @@ cmake_language(DEFER CALL _slint_write_configure_file)
write_basic_package_version_file(
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/Slint/SlintConfigVersion.cmake
VERSION 0.3.4
VERSION 1.0.0
COMPATIBILITY SameMinorVersion
)
@ -344,9 +344,9 @@ endif(SLINT_PACKAGE_BUNDLE_QT)
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 3)
set(CPACK_PACKAGE_VERSION_PATCH 4)
set(CPACK_PACKAGE_VERSION_MAJOR 1)
set(CPACK_PACKAGE_VERSION_MINOR 0)
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.3.4"
version = "1.0.0"
authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
build = "build.rs"
@ -39,15 +39,15 @@ experimental = ["i-slint-renderer-skia", "raw-window-handle"]
default = ["backend-winit", "renderer-winit-femtovg", "backend-qt", "experimental"]
[dependencies]
i-slint-backend-selector = { version = "=0.3.4", path="../../internal/backends/selector" }
i-slint-backend-testing = { version = "=0.3.4", path="../../internal/backends/testing", optional = true }
i-slint-renderer-skia = { version = "=0.3.4", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] }
i-slint-core = { version = "=0.3.4", path="../../internal/core", features = ["ffi"] }
slint-interpreter = { version = "=0.3.4", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-0-3-0"], optional = true }
i-slint-backend-selector = { version = "=1.0.0", path="../../internal/backends/selector" }
i-slint-backend-testing = { version = "=1.0.0", path="../../internal/backends/testing", optional = true }
i-slint-renderer-skia = { version = "=1.0.0", path="../../internal/renderers/skia", optional = true, features = ["x11", "wayland"] }
i-slint-core = { version = "=1.0.0", path="../../internal/core", features = ["ffi"] }
slint-interpreter = { version = "=1.0.0", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-0-3-0"], optional = true }
raw-window-handle = { version = "0.5", optional = true }
[build-dependencies]
anyhow = "1.0"
cbindgen = "0.24"
proc-macro2 = "1.0.11"
i-slint-common = { version = "=0.3.4", path="../../internal/common" }
i-slint-common = { version = "=1.0.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.3.4"
version = "1.0.0"
cpp_index_common_prefix = ["slint::", "slint::interpreter::"]