diff --git a/api/cpp/CMakeLists.txt b/api/cpp/CMakeLists.txt index c713c1c808e..1015480b42c 100644 --- a/api/cpp/CMakeLists.txt +++ b/api/cpp/CMakeLists.txt @@ -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") diff --git a/api/cpp/Cargo.toml b/api/cpp/Cargo.toml index fde5401e62c..e7a6bb8f488 100644 --- a/api/cpp/Cargo.toml +++ b/api/cpp/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-cpp" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] 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" } diff --git a/api/cpp/docs/conf.py b/api/cpp/docs/conf.py index 579d0466919..d6186196597 100644 --- a/api/cpp/docs/conf.py +++ b/api/cpp/docs/conf.py @@ -26,7 +26,7 @@ author = "Slint Developers " # The full version, including alpha/beta/rc tags -version = "1.0.2" +version = "1.0.3" cpp_index_common_prefix = ["slint::", "slint::interpreter::"] diff --git a/api/node/native/Cargo.toml b/api/node/native/Cargo.toml index 23f932f13fb..1e9660e668a 100644 --- a/api/node/native/Cargo.toml +++ b/api/node/native/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-node" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" @@ -20,9 +20,9 @@ crate-type = ["cdylib"] name = "slint_node_native" [dependencies] -i-slint-compiler = { version = "=1.0.2", path="../../../internal/compiler" } -i-slint-core = { version = "=1.0.2", path="../../../internal/core" } -slint-interpreter = { version = "=1.0.2", path="../../../internal/interpreter", features = ["display-diagnostics"] } +i-slint-compiler = { version = "=1.0.3", path="../../../internal/compiler" } +i-slint-core = { version = "=1.0.3", path="../../../internal/core" } +slint-interpreter = { version = "=1.0.3", path="../../../internal/interpreter", features = ["display-diagnostics"] } vtable = { version = "0.1.6", path="../../../helper_crates/vtable" } diff --git a/api/node/package.json b/api/node/package.json index af6f9ba4d11..dd0c1a7752a 100644 --- a/api/node/package.json +++ b/api/node/package.json @@ -1,6 +1,6 @@ { "name": "slint-ui", - "version": "1.0.2", + "version": "1.0.3", "homepage": "https://github.com/slint-ui/slint", "license": "SEE LICENSE IN LICENSE.md", "repository": { diff --git a/api/rs/build/Cargo.toml b/api/rs/build/Cargo.toml index 2cc35c9ce13..f412adca688 100644 --- a/api/rs/build/Cargo.toml +++ b/api/rs/build/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-build" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -19,7 +19,7 @@ path = "lib.rs" default = [] [dependencies] -i-slint-compiler = { version = "=1.0.2", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] } +i-slint-compiler = { version = "=1.0.3", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] } spin_on = "0.1" thiserror = "1" diff --git a/api/rs/macros/Cargo.toml b/api/rs/macros/Cargo.toml index 67c0ee83b51..93d10655433 100644 --- a/api/rs/macros/Cargo.toml +++ b/api/rs/macros/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-macros" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -17,7 +17,7 @@ proc-macro = true path = "lib.rs" [dependencies] -i-slint-compiler = { version = "=1.0.2", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] } +i-slint-compiler = { version = "=1.0.3", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] } proc-macro2 = "1.0.17" quote = "1.0" diff --git a/api/rs/slint/Cargo.toml b/api/rs/slint/Cargo.toml index baa4ad74e63..da04429a18b 100644 --- a/api/rs/slint/Cargo.toml +++ b/api/rs/slint/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -118,9 +118,9 @@ renderer-winit-skia-opengl = ["i-slint-backend-selector/renderer-winit-skia-open renderer-winit-software = ["i-slint-backend-selector/renderer-winit-software"] [dependencies] -i-slint-core = { version = "=1.0.2", path = "../../../internal/core", default-features = false } -slint-macros = { version = "=1.0.2", path = "../macros" } -i-slint-backend-selector = { version = "=1.0.2", path = "../../../internal/backends/selector" } +i-slint-core = { version = "=1.0.3", path = "../../../internal/core", default-features = false } +slint-macros = { version = "=1.0.3", path = "../macros" } +i-slint-backend-selector = { version = "=1.0.3", path = "../../../internal/backends/selector" } const-field-offset = { version = "0.1.2", path = "../../../helper_crates/const-field-offset" } document-features = { version = "0.2.0", optional = true } diff --git a/api/rs/slint/lib.rs b/api/rs/slint/lib.rs index 8c134ce5c1d..c3f9ff08749 100644 --- a/api/rs/slint/lib.rs +++ b/api/rs/slint/lib.rs @@ -288,7 +288,7 @@ pub mod platform { /// Helper type that helps checking that the generated code is generated for the right version #[doc(hidden)] #[allow(non_camel_case_types)] -pub struct VersionCheck_1_0_2; +pub struct VersionCheck_1_0_3; #[cfg(doctest)] mod compile_fail_tests; diff --git a/api/wasm-interpreter/Cargo.toml b/api/wasm-interpreter/Cargo.toml index 3e4320c9aa5..4d0d5e0a661 100644 --- a/api/wasm-interpreter/Cargo.toml +++ b/api/wasm-interpreter/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-wasm-interpreter" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" diff --git a/docs/language/conf.py b/docs/language/conf.py index 25a35230b78..b8ed20d4ff6 100644 --- a/docs/language/conf.py +++ b/docs/language/conf.py @@ -26,7 +26,7 @@ author = "Slint Developers " # The full version, including alpha/beta/rc tags -version = "1.0.2" +version = "1.0.3" # -- General configuration --------------------------------------------------- diff --git a/docs/tutorial/node/src/package.json b/docs/tutorial/node/src/package.json index 0e3af83a6d6..c5520ebbbaf 100644 --- a/docs/tutorial/node/src/package.json +++ b/docs/tutorial/node/src/package.json @@ -1,6 +1,6 @@ { "name": "memory", - "version": "1.0.2", + "version": "1.0.3", "main": "main.js", "dependencies": { "slint-ui": "^1.0.0" diff --git a/docs/tutorial/rust/src/Cargo.toml b/docs/tutorial/rust/src/Cargo.toml index 223be226827..f9ceb38d396 100644 --- a/docs/tutorial/rust/src/Cargo.toml +++ b/docs/tutorial/rust/src/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "src" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" diff --git a/docs/tutorial/rust/src/getting_started.md b/docs/tutorial/rust/src/getting_started.md index d93da0115b6..4502e4090d9 100644 --- a/docs/tutorial/rust/src/getting_started.md +++ b/docs/tutorial/rust/src/getting_started.md @@ -15,7 +15,7 @@ cd memory Then we edit `Cargo.toml` to add the slint dependency using `cargo add`: ```sh -cargo add slint@1.0.2 +cargo add slint@1.0.3 ``` Finally we copy the hello world program from the [Slint documentation](https://slint-ui.com/docs/rust/slint/) into our `src/main.rs`: diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 55064f8b2ed..45d04053ef3 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -2,7 +2,7 @@ "name": "slint", "displayName": "Slint", "description": "Slint Language extension", - "version": "1.0.2", + "version": "1.0.3", "publisher": "Slint", "icon": "extension-logo.png", "license": "GPL-3.0", diff --git a/examples/7guis/Cargo.toml b/examples/7guis/Cargo.toml index 9eb23d218a0..046d1cf79b8 100644 --- a/examples/7guis/Cargo.toml +++ b/examples/7guis/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "_7guis" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/carousel/node/package.json b/examples/carousel/node/package.json index f3694cc0b47..d54690574c6 100644 --- a/examples/carousel/node/package.json +++ b/examples/carousel/node/package.json @@ -1,6 +1,6 @@ { "name": "carousel", - "version": "1.0.2", + "version": "1.0.3", "main": "main.js", "dependencies": { "slint-ui": "../../../api/node" diff --git a/examples/carousel/rust/Cargo.toml b/examples/carousel/rust/Cargo.toml index 8b9e0ca6746..9002004caf6 100644 --- a/examples/carousel/rust/Cargo.toml +++ b/examples/carousel/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "carousel" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/energy-monitor/Cargo.toml b/examples/energy-monitor/Cargo.toml index f600d82a961..808a1904c7c 100644 --- a/examples/energy-monitor/Cargo.toml +++ b/examples/energy-monitor/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "energy-monitor" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/gallery/Cargo.toml b/examples/gallery/Cargo.toml index 460ab3076ac..d362b4405f8 100644 --- a/examples/gallery/Cargo.toml +++ b/examples/gallery/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "gallery" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/imagefilter/Cargo.toml b/examples/imagefilter/Cargo.toml index 3bdcdf535c7..6c4a01f6072 100644 --- a/examples/imagefilter/Cargo.toml +++ b/examples/imagefilter/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "imagefilter" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/mcu-board-support/Cargo.toml b/examples/mcu-board-support/Cargo.toml index 1151bd5a728..aa726331fcd 100644 --- a/examples/mcu-board-support/Cargo.toml +++ b/examples/mcu-board-support/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "mcu-board-support" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -23,8 +23,8 @@ esp32-s2-kaluga-1 = ["slint/unsafe-single-threaded", "esp32s2-hal", "embedded-ha esp32-s3-box = ["slint/unsafe-single-threaded", "esp32s3-hal", "embedded-hal", "xtensa-lx-rt/esp32s3", "esp-alloc", "esp-println/esp32s3", "esp-backtrace/esp32s3", "display-interface", "display-interface-spi", "mipidsi", "embedded-graphics", "slint/libm", "tt21100"] [dependencies] -slint = { version = "=1.0.2", path = "../../api/rs/slint", default-features = false, features = ["compat-1-0"] } -i-slint-core-macros = { version = "=1.0.2", path = "../../internal/core-macros" } +slint = { version = "=1.0.3", path = "../../api/rs/slint", default-features = false, features = ["compat-1-0"] } +i-slint-core-macros = { version = "=1.0.3", path = "../../internal/core-macros" } derive_more = "0.99.5" embedded-graphics = { version = "0.7.1", optional = true } diff --git a/examples/memory/Cargo.toml b/examples/memory/Cargo.toml index 2945dbec655..8600f6ec491 100644 --- a/examples/memory/Cargo.toml +++ b/examples/memory/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "memory" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/memory/package.json b/examples/memory/package.json index 784bfcb0b65..9c36c21b2fe 100644 --- a/examples/memory/package.json +++ b/examples/memory/package.json @@ -1,6 +1,6 @@ { "name": "memory", - "version": "1.0.2", + "version": "1.0.3", "main": "main.js", "dependencies": { "slint-ui": "../../api/node" diff --git a/examples/opengl_underlay/Cargo.toml b/examples/opengl_underlay/Cargo.toml index 152b459ce03..b36fbebccc7 100644 --- a/examples/opengl_underlay/Cargo.toml +++ b/examples/opengl_underlay/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "opengl_underlay" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/plotter/Cargo.toml b/examples/plotter/Cargo.toml index 4b77f28d405..8044fce3f13 100644 --- a/examples/plotter/Cargo.toml +++ b/examples/plotter/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "plotter" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/printerdemo/node/package.json b/examples/printerdemo/node/package.json index 45e30f40f40..ddd17025523 100644 --- a/examples/printerdemo/node/package.json +++ b/examples/printerdemo/node/package.json @@ -1,6 +1,6 @@ { "name": "printerdemo", - "version": "1.0.2", + "version": "1.0.3", "main": "main.js", "dependencies": { "slint-ui": "../../../api/node" diff --git a/examples/printerdemo/rust/Cargo.toml b/examples/printerdemo/rust/Cargo.toml index bcaed8d4fe2..b75dfca67da 100644 --- a/examples/printerdemo/rust/Cargo.toml +++ b/examples/printerdemo/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "printerdemo" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/printerdemo_mcu/Cargo.toml b/examples/printerdemo_mcu/Cargo.toml index cf871f851bc..b373d6f86b6 100644 --- a/examples/printerdemo_mcu/Cargo.toml +++ b/examples/printerdemo_mcu/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "printerdemo_mcu" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/printerdemo_old/node/package.json b/examples/printerdemo_old/node/package.json index 45e30f40f40..ddd17025523 100644 --- a/examples/printerdemo_old/node/package.json +++ b/examples/printerdemo_old/node/package.json @@ -1,6 +1,6 @@ { "name": "printerdemo", - "version": "1.0.2", + "version": "1.0.3", "main": "main.js", "dependencies": { "slint-ui": "../../../api/node" diff --git a/examples/printerdemo_old/rust/Cargo.toml b/examples/printerdemo_old/rust/Cargo.toml index 8a4e012f771..52154ca44c1 100644 --- a/examples/printerdemo_old/rust/Cargo.toml +++ b/examples/printerdemo_old/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "printerdemo_old" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/slide_puzzle/Cargo.toml b/examples/slide_puzzle/Cargo.toml index 7661c4be994..893c4551bc4 100644 --- a/examples/slide_puzzle/Cargo.toml +++ b/examples/slide_puzzle/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slide_puzzle" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/todo/node/package.json b/examples/todo/node/package.json index 60b5ee5b50a..a4382f2eb05 100644 --- a/examples/todo/node/package.json +++ b/examples/todo/node/package.json @@ -1,6 +1,6 @@ { "name": "todo", - "version": "1.0.2", + "version": "1.0.3", "main": "main.js", "dependencies": { "slint-ui": "../../../api/node" diff --git a/examples/todo/rust/Cargo.toml b/examples/todo/rust/Cargo.toml index 6b91a2f5110..af18042bdee 100644 --- a/examples/todo/rust/Cargo.toml +++ b/examples/todo/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "todo" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/uefi-demo/Cargo.toml b/examples/uefi-demo/Cargo.toml index 6cd5bf8c0bb..0179c58ba3e 100644 --- a/examples/uefi-demo/Cargo.toml +++ b/examples/uefi-demo/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "uefi-demo" -version = "1.0.2" +version = "1.0.3" edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" build = "build.rs" diff --git a/examples/virtual_keyboard/rust/Cargo.toml b/examples/virtual_keyboard/rust/Cargo.toml index 0da156ea25a..e8c0db5a55a 100644 --- a/examples/virtual_keyboard/rust/Cargo.toml +++ b/examples/virtual_keyboard/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "virtual_keyboard" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/internal/backends/qt/Cargo.toml b/internal/backends/qt/Cargo.toml index b094c819b84..2932d57215d 100644 --- a/internal/backends/qt/Cargo.toml +++ b/internal/backends/qt/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-backend-qt" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -19,9 +19,9 @@ rtti = ["i-slint-core/rtti"] path = "lib.rs" [dependencies] -i-slint-common = { version = "=1.0.2", path = "../../../internal/common" } -i-slint-core-macros = { version = "=1.0.2", path = "../../../internal/core-macros" } -i-slint-core = { version = "=1.0.2", path = "../../../internal/core" } +i-slint-common = { version = "=1.0.3", path = "../../../internal/common" } +i-slint-core-macros = { version = "=1.0.3", path = "../../../internal/core-macros" } +i-slint-core = { version = "=1.0.3", path = "../../../internal/core" } const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" } vtable = { version = "0.1.8", path = "../../../helper_crates/vtable" } diff --git a/internal/backends/selector/Cargo.toml b/internal/backends/selector/Cargo.toml index ffa36e2ba50..106fb6d1685 100644 --- a/internal/backends/selector/Cargo.toml +++ b/internal/backends/selector/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-backend-selector" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -27,8 +27,8 @@ renderer-winit-software = ["i-slint-backend-winit/renderer-winit-software"] rtti = ["i-slint-backend-winit?/rtti", "i-slint-backend-qt?/rtti"] [dependencies] -i-slint-core = { version = "=1.0.2", path = "../../../internal/core", default-features = false } -i-slint-backend-winit = { version = "=1.0.2", path = "../winit", optional = true } -i-slint-backend-qt = { version = "=1.0.2", path = "../qt", optional = true } +i-slint-core = { version = "=1.0.3", path = "../../../internal/core", default-features = false } +i-slint-backend-winit = { version = "=1.0.3", path = "../winit", optional = true } +i-slint-backend-qt = { version = "=1.0.3", path = "../qt", optional = true } cfg-if = "1" diff --git a/internal/backends/testing/Cargo.toml b/internal/backends/testing/Cargo.toml index b7415206de8..73818a43d62 100644 --- a/internal/backends/testing/Cargo.toml +++ b/internal/backends/testing/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-backend-testing" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -16,6 +16,6 @@ publish = false path = "lib.rs" [dependencies] -i-slint-core = { version = "=1.0.2", path = "../../../internal/core" } +i-slint-core = { version = "=1.0.3", path = "../../../internal/core" } vtable = { version = "0.1.8", path = "../../../helper_crates/vtable" } image = { version = "0.24.0", default-features = false, features = ["png", "jpeg"] } diff --git a/internal/backends/winit/Cargo.toml b/internal/backends/winit/Cargo.toml index 25087a191ae..ad7a21b0af1 100644 --- a/internal/backends/winit/Cargo.toml +++ b/internal/backends/winit/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-backend-winit" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -29,9 +29,9 @@ rtti = ["i-slint-core/rtti"] default = [] [dependencies] -i-slint-core = { version = "=1.0.2", path = "../../../internal/core" } -i-slint-core-macros = { version = "=1.0.2", path = "../../../internal/core-macros" } -i-slint-common = { version = "=1.0.2", path = "../../../internal/common" } +i-slint-core = { version = "=1.0.3", path = "../../../internal/core" } +i-slint-core-macros = { version = "=1.0.3", path = "../../../internal/core-macros" } +i-slint-common = { version = "=1.0.3", path = "../../../internal/common" } const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" } vtable = { version = "0.1.6", path = "../../../helper_crates/vtable" } @@ -50,10 +50,10 @@ raw-window-handle = { version = "0.5", features = ["alloc"] } scopeguard = { version = "1.1.0", default-features = false } # For the FemtoVG renderer -i-slint-renderer-femtovg = { version = "=1.0.2", path = "../../renderers/femtovg", optional = true } +i-slint-renderer-femtovg = { version = "=1.0.3", path = "../../renderers/femtovg", optional = true } # For the Skia renderer -i-slint-renderer-skia = { version = "=1.0.2", path = "../../renderers/skia", optional = true } +i-slint-renderer-skia = { version = "=1.0.3", path = "../../renderers/skia", optional = true } # For the software renderer softbuffer = { version = "0.2.0", optional = true } @@ -68,10 +68,10 @@ send_wrapper = "0.6.0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] glutin = { version = "0.30", optional = true, default-features = false, features = ["egl", "wgl"] } glutin-winit = { version = "0.3.0", optional = true, default-features = false, features = ["egl", "wgl"] } -i-slint-renderer-femtovg = { version = "=1.0.2", path = "../../renderers/femtovg", optional = true, features = ["diskfonts"] } +i-slint-renderer-femtovg = { version = "=1.0.3", path = "../../renderers/femtovg", optional = true, features = ["diskfonts"] } [target.'cfg(not(any(target_family = "windows", target_os = "macos", target_os = "ios", target_arch = "wasm32")))'.dependencies] -i-slint-renderer-femtovg = { version = "=1.0.2", path = "../../renderers/femtovg", optional = true, features = ["fontconfig"] } +i-slint-renderer-femtovg = { version = "=1.0.3", path = "../../renderers/femtovg", optional = true, features = ["fontconfig"] } [target.'cfg(target_os = "macos")'.dependencies] # For GL rendering diff --git a/internal/common/Cargo.toml b/internal/common/Cargo.toml index 8812eda364c..643917965eb 100644 --- a/internal/common/Cargo.toml +++ b/internal/common/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-common" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" diff --git a/internal/compiler/Cargo.toml b/internal/compiler/Cargo.toml index a523a18fbac..d1cd501b152 100644 --- a/internal/compiler/Cargo.toml +++ b/internal/compiler/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-compiler" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" build = "build.rs" @@ -32,7 +32,7 @@ software-renderer = ["image", "dep:resvg", "dep:fontdb", "fontdue", "libc", "dep [dependencies] -i-slint-common = { version = "=1.0.2", path = "../common" } +i-slint-common = { version = "=1.0.3", path = "../common" } num_enum = "0.6.1" strum = { version = "0.24.0", default-features = false, features = ["derive"] } diff --git a/internal/compiler/parser-test-macro/Cargo.toml b/internal/compiler/parser-test-macro/Cargo.toml index 3e160815bf8..94a667c2d12 100644 --- a/internal/compiler/parser-test-macro/Cargo.toml +++ b/internal/compiler/parser-test-macro/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-parser-test-macro" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/internal/compiler/widgets/common/common.slint b/internal/compiler/widgets/common/common.slint index cbdd66f256a..016531227a7 100644 --- a/internal/compiler/widgets/common/common.slint +++ b/internal/compiler/widgets/common/common.slint @@ -104,7 +104,7 @@ export component AboutSlint { min-height: 48px; } Text { - text: "Version 1.0.2\nhttps://slint-ui.com/"; + text: "Version 1.0.3\nhttps://slint-ui.com/"; font-size: 10px; horizontal-alignment: center; } diff --git a/internal/core-macros/Cargo.toml b/internal/core-macros/Cargo.toml index 3b7bbc1d4d3..27650d3b279 100644 --- a/internal/core-macros/Cargo.toml +++ b/internal/core-macros/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-core-macros" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" diff --git a/internal/core/Cargo.toml b/internal/core/Cargo.toml index 6647f6e5792..d3de9113109 100644 --- a/internal/core/Cargo.toml +++ b/internal/core/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-core" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -41,8 +41,8 @@ box-shadow-cache = [] default = ["std", "unicode"] [dependencies] -i-slint-common = { version = "=1.0.2", path = "../common" } -i-slint-core-macros = { version = "=1.0.2", path = "../core-macros" } +i-slint-common = { version = "=1.0.3", path = "../common" } +i-slint-core-macros = { version = "=1.0.3", path = "../core-macros" } const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" } vtable = { version="0.1.9", path = "../../helper_crates/vtable" } diff --git a/internal/interpreter/Cargo.toml b/internal/interpreter/Cargo.toml index 36680a95fc3..81aba03f841 100644 --- a/internal/interpreter/Cargo.toml +++ b/internal/interpreter/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-interpreter" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -80,10 +80,10 @@ renderer-winit-software = ["i-slint-backend-selector/renderer-winit-software"] [dependencies] -i-slint-compiler = { version = "=1.0.2", path = "../compiler" } -i-slint-common = { version = "=1.0.2", path = "../common" } -i-slint-core = { version = "=1.0.2", path = "../core", features = ["rtti"] } -i-slint-backend-selector = { version = "=1.0.2", path = "../../internal/backends/selector", features = ["rtti"] } +i-slint-compiler = { version = "=1.0.3", path = "../compiler" } +i-slint-common = { version = "=1.0.3", path = "../common" } +i-slint-core = { version = "=1.0.3", path = "../core", features = ["rtti"] } +i-slint-backend-selector = { version = "=1.0.3", path = "../../internal/backends/selector", features = ["rtti"] } vtable = { version = "0.1.6", path="../../helper_crates/vtable" } @@ -99,7 +99,7 @@ version = "0.1" optional = true [target.'cfg(target_arch = "wasm32")'.dependencies] -i-slint-backend-winit = { version = "=1.0.2", path = "../../internal/backends/winit" } +i-slint-backend-winit = { version = "=1.0.3", path = "../../internal/backends/winit" } [dev-dependencies] i-slint-backend-testing = { path = "../../internal/backends/testing" } diff --git a/internal/renderers/femtovg/Cargo.toml b/internal/renderers/femtovg/Cargo.toml index 8e754881a3a..7ad17a94ce0 100644 --- a/internal/renderers/femtovg/Cargo.toml +++ b/internal/renderers/femtovg/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-renderer-femtovg" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -20,9 +20,9 @@ diskfonts = ["fontdb/memmap", "fontdb/fontconfig"] fontconfig = ["dep:yeslogic-fontconfig-sys"] [dependencies] -i-slint-core = { version = "=1.0.2", path = "../../../internal/core", features = [ "box-shadow-cache" ] } -i-slint-core-macros = { version = "=1.0.2", path = "../../../internal/core-macros" } -i-slint-common = { version = "=1.0.2", path = "../../../internal/common" } +i-slint-core = { version = "=1.0.3", path = "../../../internal/core", features = [ "box-shadow-cache" ] } +i-slint-core-macros = { version = "=1.0.3", path = "../../../internal/core-macros" } +i-slint-common = { version = "=1.0.3", path = "../../../internal/common" } const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" } vtable = { version = "0.1.6", path = "../../../helper_crates/vtable" } diff --git a/internal/renderers/skia/Cargo.toml b/internal/renderers/skia/Cargo.toml index 1982811808f..fab81d781fe 100644 --- a/internal/renderers/skia/Cargo.toml +++ b/internal/renderers/skia/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "i-slint-renderer-skia" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -25,9 +25,9 @@ opengl = ["skia-safe/gl"] default = [] [dependencies] -i-slint-core = { version = "=1.0.2", path = "../../../internal/core", features = [ "box-shadow-cache" ] } -i-slint-core-macros = { version = "=1.0.2", path = "../../../internal/core-macros" } -i-slint-common = { version = "=1.0.2", path = "../../../internal/common" } +i-slint-core = { version = "=1.0.3", path = "../../../internal/core", features = [ "box-shadow-cache" ] } +i-slint-core-macros = { version = "=1.0.3", path = "../../../internal/core-macros" } +i-slint-common = { version = "=1.0.3", path = "../../../internal/common" } const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" } vtable = { version = "0.1.6", path = "../../../helper_crates/vtable" } diff --git a/tests/doctests/Cargo.toml b/tests/doctests/Cargo.toml index b019a7e4126..5551d9d24d8 100644 --- a/tests/doctests/Cargo.toml +++ b/tests/doctests/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "doctests" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/tests/driver/cpp/Cargo.toml b/tests/driver/cpp/Cargo.toml index 5bc92de57b8..2120a6b7b23 100644 --- a/tests/driver/cpp/Cargo.toml +++ b/tests/driver/cpp/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "test-driver-cpp" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/tests/driver/driverlib/Cargo.toml b/tests/driver/driverlib/Cargo.toml index 7427df3a351..2e4404036d4 100644 --- a/tests/driver/driverlib/Cargo.toml +++ b/tests/driver/driverlib/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "test_driver_lib" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/tests/driver/interpreter/Cargo.toml b/tests/driver/interpreter/Cargo.toml index 99746911d30..6dd4690abae 100644 --- a/tests/driver/interpreter/Cargo.toml +++ b/tests/driver/interpreter/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "test-driver-interpreter" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/tests/driver/nodejs/Cargo.toml b/tests/driver/nodejs/Cargo.toml index 6e0f8ded110..c0c37ec1c39 100644 --- a/tests/driver/nodejs/Cargo.toml +++ b/tests/driver/nodejs/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "test-driver-nodejs" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/tests/driver/rust/Cargo.toml b/tests/driver/rust/Cargo.toml index deaf6b7f7aa..de6dc017aff 100644 --- a/tests/driver/rust/Cargo.toml +++ b/tests/driver/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "test-driver-rust" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" diff --git a/tests/screenshots/Cargo.toml b/tests/screenshots/Cargo.toml index 68d3a770ae2..5511939005e 100644 --- a/tests/screenshots/Cargo.toml +++ b/tests/screenshots/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "test-driver-screenshots" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -15,7 +15,7 @@ name = "test-driver-screenshot" [dependencies] slint = { path = "../../api/rs/slint", default-features = false, features = ["std", "compat-1-0"] } -i-slint-core = { version = "=1.0.2", path = "../../internal/core" } +i-slint-core = { version = "=1.0.3", path = "../../internal/core" } i-slint-backend-testing = { path = "../../internal/backends/testing" } image = { version = "0.24.0", default-features = false, features = ["png", "jpeg"] } crossterm = "0.26" diff --git a/tools/compiler/Cargo.toml b/tools/compiler/Cargo.toml index fcc5b229930..acf6cb8fc88 100644 --- a/tools/compiler/Cargo.toml +++ b/tools/compiler/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-compiler" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -17,7 +17,7 @@ name = "slint-compiler" path = "main.rs" [dependencies] -i-slint-compiler = { version = "=1.0.2", path = "../../internal/compiler", features = ["display-diagnostics", "cpp", "rust"]} +i-slint-compiler = { version = "=1.0.3", path = "../../internal/compiler", features = ["display-diagnostics", "cpp", "rust"]} clap = { version = "4.0", features = ["derive", "wrap_help"] } proc-macro2 = "1.0.11" diff --git a/tools/figma_import/Cargo.toml b/tools/figma_import/Cargo.toml index 5a7b7d91a6b..fd172ee4aea 100644 --- a/tools/figma_import/Cargo.toml +++ b/tools/figma_import/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "figma_import" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] description = "A figma file importer for Slint" edition = "2021" diff --git a/tools/fmt/Cargo.toml b/tools/fmt/Cargo.toml index 02d10d02612..db14acaf19b 100644 --- a/tools/fmt/Cargo.toml +++ b/tools/fmt/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-fmt" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" diff --git a/tools/lsp/Cargo.toml b/tools/lsp/Cargo.toml index 37b5e6a0655..b97084c8f02 100644 --- a/tools/lsp/Cargo.toml +++ b/tools/lsp/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-lsp" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -61,7 +61,7 @@ preview-api = [] default = ["backend-qt", "backend-winit", "renderer-winit-femtovg", "preview"] [dependencies] -i-slint-compiler = { version = "=1.0.2", path = "../../internal/compiler"} +i-slint-compiler = { version = "=1.0.3", path = "../../internal/compiler"} dunce = "1.0.1" euclid = "0.22" lsp-types = { version = "0.94.0", features = ["proposed"] } @@ -71,9 +71,9 @@ rowan = "0.15.5" # for the preview -i-slint-core = { version = "=1.0.2", path = "../../internal/core", optional = true } -slint-interpreter = { version = "=1.0.2", path = "../../internal/interpreter", default-features = false, features = ["compat-1-0", "highlight"], optional = true } -i-slint-backend-selector = { version = "=1.0.2", path="../../internal/backends/selector", optional = true } +i-slint-core = { version = "=1.0.3", path = "../../internal/core", optional = true } +slint-interpreter = { version = "=1.0.3", path = "../../internal/interpreter", default-features = false, features = ["compat-1-0", "highlight"], optional = true } +i-slint-backend-selector = { version = "=1.0.3", path="../../internal/backends/selector", optional = true } # Enable image-rs' default features to make all image formats available for the preview image = { version = "0.24.0", optional = true } diff --git a/tools/slintpad/package.json b/tools/slintpad/package.json index 52c96c535ff..fa17fbd4f67 100644 --- a/tools/slintpad/package.json +++ b/tools/slintpad/package.json @@ -1,7 +1,7 @@ { "//": "cSpell: ignore lumino dragdrop frsource ", "name": "slintpad", - "version": "1.0.2", + "version": "1.0.3", "description": "", "main": "index.js", "scripts": { diff --git a/tools/updater/Cargo.toml b/tools/updater/Cargo.toml index a23cf8272cd..159bc0abb93 100644 --- a/tools/updater/Cargo.toml +++ b/tools/updater/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-updater" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -13,7 +13,7 @@ homepage = "https://slint-ui.com" [dependencies] -i-slint-compiler = { version = "=1.0.2", path = "../../internal/compiler", features = ["display-diagnostics"] } +i-slint-compiler = { version = "=1.0.3", path = "../../internal/compiler", features = ["display-diagnostics"] } clap = { version = "4.0", features = ["derive", "wrap_help"] } codemap = "0.1" diff --git a/tools/viewer/Cargo.toml b/tools/viewer/Cargo.toml index 0c11b392243..3f794083964 100644 --- a/tools/viewer/Cargo.toml +++ b/tools/viewer/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-viewer" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] edition = "2021" license = "GPL-3.0-only OR LicenseRef-Slint-commercial" @@ -34,9 +34,9 @@ backend-gl-x11 = ["backend-winit-x11", "renderer-winit-femtovg"] default = ["backend-qt", "backend-winit", "renderer-winit-femtovg"] [dependencies] -i-slint-core = { version = "=1.0.2", path="../../internal/core" } -slint-interpreter = { version = "=1.0.2", path = "../../internal/interpreter", default-features = false, features = ["display-diagnostics", "compat-1-0"] } -i-slint-backend-selector = { version = "=1.0.2", path="../../internal/backends/selector" } +i-slint-core = { version = "=1.0.3", path="../../internal/core" } +slint-interpreter = { version = "=1.0.3", path = "../../internal/interpreter", default-features = false, features = ["display-diagnostics", "compat-1-0"] } +i-slint-backend-selector = { version = "=1.0.3", path="../../internal/backends/selector" } vtable = { version = "0.1.6", path="../../helper_crates/vtable" } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 6406eefbad0..add943881c5 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "xtask" -version = "1.0.2" +version = "1.0.3" authors = ["Slint Developers "] description = "Development helper tool for the Slint project" edition = "2021" @@ -23,4 +23,4 @@ serde_json = "1.0" cbindgen = "0.24" proc-macro2 = "1.0.11" which = "4.2.4" -i-slint-common = { version = "=1.0.2", path="../internal/common" } +i-slint-common = { version = "=1.0.3", path="../internal/common" }