diff --git a/Cargo.toml b/Cargo.toml index b2d9d7ee2..fc40d6260 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -110,26 +110,26 @@ keywords = ["gui", "toolkit", "graphics", "design", "ui"] license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0" repository = "https://github.com/slint-ui/slint" rust-version = "1.82" -version = "1.12.1" +version = "1.13.0" [workspace.dependencies] -i-slint-backend-android-activity = { version = "=1.12.1", path = "internal/backends/android-activity", default-features = false } -i-slint-backend-linuxkms = { version = "=1.12.1", path = "internal/backends/linuxkms", default-features = false } -i-slint-backend-qt = { version = "=1.12.1", path = "internal/backends/qt", default-features = false } -i-slint-backend-selector = { version = "=1.12.1", path = "internal/backends/selector", default-features = false } -i-slint-backend-testing = { version = "=1.12.1", path = "internal/backends/testing", default-features = false } -i-slint-backend-winit = { version = "=1.12.1", path = "internal/backends/winit", default-features = false } -i-slint-common = { version = "=1.12.1", path = "internal/common", default-features = false } -i-slint-compiler = { version = "=1.12.1", path = "internal/compiler", default-features = false } -i-slint-core = { version = "=1.12.1", path = "internal/core", default-features = false } -i-slint-core-macros = { version = "=1.12.1", path = "internal/core-macros", default-features = false } -i-slint-renderer-femtovg = { version = "=1.12.1", path = "internal/renderers/femtovg", default-features = false } -i-slint-renderer-skia = { version = "=1.12.1", path = "internal/renderers/skia", default-features = false } -slint = { version = "=1.12.1", path = "api/rs/slint", default-features = false } -slint-build = { version = "=1.12.1", path = "api/rs/build", default-features = false } -slint-cpp = { version = "=1.12.1", path = "api/cpp", default-features = false } -slint-interpreter = { version = "=1.12.1", path = "internal/interpreter", default-features = false } -slint-macros = { version = "=1.12.1", path = "api/rs/macros", default-features = false } +i-slint-backend-android-activity = { version = "=1.13.0", path = "internal/backends/android-activity", default-features = false } +i-slint-backend-linuxkms = { version = "=1.13.0", path = "internal/backends/linuxkms", default-features = false } +i-slint-backend-qt = { version = "=1.13.0", path = "internal/backends/qt", default-features = false } +i-slint-backend-selector = { version = "=1.13.0", path = "internal/backends/selector", default-features = false } +i-slint-backend-testing = { version = "=1.13.0", path = "internal/backends/testing", default-features = false } +i-slint-backend-winit = { version = "=1.13.0", path = "internal/backends/winit", default-features = false } +i-slint-common = { version = "=1.13.0", path = "internal/common", default-features = false } +i-slint-compiler = { version = "=1.13.0", path = "internal/compiler", default-features = false } +i-slint-core = { version = "=1.13.0", path = "internal/core", default-features = false } +i-slint-core-macros = { version = "=1.13.0", path = "internal/core-macros", default-features = false } +i-slint-renderer-femtovg = { version = "=1.13.0", path = "internal/renderers/femtovg", default-features = false } +i-slint-renderer-skia = { version = "=1.13.0", path = "internal/renderers/skia", default-features = false } +slint = { version = "=1.13.0", path = "api/rs/slint", default-features = false } +slint-build = { version = "=1.13.0", path = "api/rs/build", default-features = false } +slint-cpp = { version = "=1.13.0", path = "api/cpp", default-features = false } +slint-interpreter = { version = "=1.13.0", path = "internal/interpreter", default-features = false } +slint-macros = { version = "=1.13.0", path = "api/rs/macros", default-features = false } vtable = { version = "0.3", path = "helper_crates/vtable" } diff --git a/api/cpp/CMakeLists.txt b/api/cpp/CMakeLists.txt index bac9d3569..450257f0a 100644 --- a/api/cpp/CMakeLists.txt +++ b/api/cpp/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.21) # Select C++ and C as languages, as Corrosion needs ${CMAKE_C_COMPILER} # for linking -project(Slint HOMEPAGE_URL "https://slint.dev/" LANGUAGES C CXX VERSION 1.12.1) +project(Slint HOMEPAGE_URL "https://slint.dev/" LANGUAGES C CXX VERSION 1.13.0) include(FeatureSummary) include(CMakeDependentOption) diff --git a/api/cpp/docs/conf.py b/api/cpp/docs/conf.py index 13cd2198f..64d9134ca 100644 --- a/api/cpp/docs/conf.py +++ b/api/cpp/docs/conf.py @@ -23,7 +23,7 @@ import json # -- Project information ----------------------------------------------------- # The full version, including alpha/beta/rc tags -version = "1.12.1" +version = "1.13.0" project = f"Slint {version} C++ API" copyright = "SixtyFPS GmbH" diff --git a/api/cpp/esp-idf/slint/CMakeLists.txt b/api/cpp/esp-idf/slint/CMakeLists.txt index 514c61cbc..fac272896 100644 --- a/api/cpp/esp-idf/slint/CMakeLists.txt +++ b/api/cpp/esp-idf/slint/CMakeLists.txt @@ -48,7 +48,7 @@ else() FetchContent_Declare( Slint GIT_REPOSITORY https://github.com/slint-ui/slint - GIT_TAG v1.12.1 + GIT_TAG v1.13.0 SOURCE_SUBDIR api/cpp ) FetchContent_MakeAvailable(Slint) diff --git a/api/cpp/esp-idf/slint/idf_component.yml b/api/cpp/esp-idf/slint/idf_component.yml index 24c176ff9..083d0bd3b 100644 --- a/api/cpp/esp-idf/slint/idf_component.yml +++ b/api/cpp/esp-idf/slint/idf_component.yml @@ -4,7 +4,7 @@ description: "Slint — declarative GUI toolkit" url: "https://slint.dev" license: "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0" -version: "1.12.1" +version: "1.13.0" discussion: "https://github.com/slint-ui/slint/discussions" documentation: "https://slint.dev/docs" repository: "https://github.com/slint-ui/slint" diff --git a/api/node/binaries.json b/api/node/binaries.json index 940a7f351..4a39d95af 100644 --- a/api/node/binaries.json +++ b/api/node/binaries.json @@ -1,6 +1,6 @@ { "name": "@slint-ui/slint-ui-binary", - "version": "1.12.1", + "version": "1.13.0", "binaryName": "slint-ui", "package": "@slint-ui/slint-ui-binary", "napi": { diff --git a/api/node/package.json b/api/node/package.json index 7d4d92b8a..0141dc2f1 100644 --- a/api/node/package.json +++ b/api/node/package.json @@ -1,6 +1,6 @@ { "name": "slint-ui", - "version": "1.12.1", + "version": "1.13.0", "main": "dist/index.js", "types": "dist/index.d.ts", "homepage": "https://github.com/slint-ui/slint", diff --git a/api/python/briefcase/pyproject.toml b/api/python/briefcase/pyproject.toml index f4588d0a2..2f0d6c6ee 100644 --- a/api/python/briefcase/pyproject.toml +++ b/api/python/briefcase/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "briefcasex-slint" -version = "1.12.1b1" +version = "1.13.0b1" description = "Plugin for Briefcase to offer Slint application templates" readme = "README.md" requires-python = ">=3.10" diff --git a/api/python/slint/pyproject.toml b/api/python/slint/pyproject.toml index 0c87dc0d9..e4354721c 100644 --- a/api/python/slint/pyproject.toml +++ b/api/python/slint/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "maturin" [project] name = "slint" -version = "1.12.1b1" +version = "1.13.0b1" requires-python = ">= 3.12" authors = [{ name = "Slint Team", email = "info@slint.dev" }] classifiers = [ diff --git a/api/rs/slint/lib.rs b/api/rs/slint/lib.rs index 9b48e5c2d..fefcb400a 100644 --- a/api/rs/slint/lib.rs +++ b/api/rs/slint/lib.rs @@ -438,7 +438,7 @@ pub use i_slint_backend_selector::api::*; /// 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_12_1; +pub struct VersionCheck_1_13_0; #[cfg(doctest)] mod compile_fail_tests; diff --git a/demos/energy-monitor/Cargo.toml b/demos/energy-monitor/Cargo.toml index dcf3b2078..387bf14fa 100644 --- a/demos/energy-monitor/Cargo.toml +++ b/demos/energy-monitor/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "energy-monitor" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/home-automation/node/package.json b/demos/home-automation/node/package.json index 7a272bf0a..c5be21ff5 100644 --- a/demos/home-automation/node/package.json +++ b/demos/home-automation/node/package.json @@ -1,6 +1,6 @@ { "name": "home_automation", - "version": "1.12.1", + "version": "1.13.0", "main": "main.js", "type": "module", "dependencies": { diff --git a/demos/home-automation/rust/Cargo.toml b/demos/home-automation/rust/Cargo.toml index 7c9166fe9..ca61f0b03 100644 --- a/demos/home-automation/rust/Cargo.toml +++ b/demos/home-automation/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "home-automation" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/demos/printerdemo/node/package.json b/demos/printerdemo/node/package.json index 6c7fa111a..a6ac5daff 100644 --- a/demos/printerdemo/node/package.json +++ b/demos/printerdemo/node/package.json @@ -1,6 +1,6 @@ { "name": "printerdemo", - "version": "1.12.1", + "version": "1.13.0", "main": "main.js", "type": "module", "dependencies": { diff --git a/demos/printerdemo/rust/Cargo.toml b/demos/printerdemo/rust/Cargo.toml index 0f5484226..f49052cf5 100644 --- a/demos/printerdemo/rust/Cargo.toml +++ b/demos/printerdemo/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "printerdemo" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/printerdemo_mcu/Cargo.toml b/demos/printerdemo_mcu/Cargo.toml index b296d87db..ed2dd02c0 100644 --- a/demos/printerdemo_mcu/Cargo.toml +++ b/demos/printerdemo_mcu/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "printerdemo_mcu" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/usecases/rust/Cargo.toml b/demos/usecases/rust/Cargo.toml index 8442314a0..eec2e9146 100644 --- a/demos/usecases/rust/Cargo.toml +++ b/demos/usecases/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "usecases" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/demos/weather-demo/Cargo.toml b/demos/weather-demo/Cargo.toml index fd5d7db35..d7423744a 100644 --- a/demos/weather-demo/Cargo.toml +++ b/demos/weather-demo/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "weather-demo" -version = "1.12.1" +version = "1.13.0" authors = ["FELGO GmbH "] edition = "2021" build = "build.rs" diff --git a/docs/astro/package.json b/docs/astro/package.json index 3d02ec992..6d041c4af 100644 --- a/docs/astro/package.json +++ b/docs/astro/package.json @@ -1,7 +1,7 @@ { "name": "slint-docs", "type": "module", - "version": "1.12.1", + "version": "1.13.0", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/docs/astro/src/components/editor/package.json b/docs/astro/src/components/editor/package.json index f252e849b..1b3ed532d 100644 --- a/docs/astro/src/components/editor/package.json +++ b/docs/astro/src/components/editor/package.json @@ -1,6 +1,6 @@ { "name": "slint-docs", - "version": "1.12.1", + "version": "1.13.0", "type": "module", "scripts": { "build": "rollup -c", diff --git a/docs/astro/src/content/code/Cargo.toml b/docs/astro/src/content/code/Cargo.toml index 113673041..1bfb672ae 100644 --- a/docs/astro/src/content/code/Cargo.toml +++ b/docs/astro/src/content/code/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "src" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" license = "MIT" diff --git a/docs/astro/src/content/code/package.json b/docs/astro/src/content/code/package.json index e8f351b99..1d5eaecfc 100644 --- a/docs/astro/src/content/code/package.json +++ b/docs/astro/src/content/code/package.json @@ -1,6 +1,6 @@ { "name": "memory", - "version": "1.12.1", + "version": "1.13.0", "main": "main.js", "type": "module", "dependencies": { diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 60bd1ffc4..28c431a8c 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -11,7 +11,7 @@ "live preview", "drag-and-drop editor" ], - "version": "1.12.1", + "version": "1.13.0", "publisher": "Slint", "icon": "extension-logo.png", "license": "GPL-3.0", diff --git a/examples/7guis/Cargo.toml b/examples/7guis/Cargo.toml index 71cc5c702..c87e26fc6 100644 --- a/examples/7guis/Cargo.toml +++ b/examples/7guis/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "_7guis" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/bevy/Cargo.toml b/examples/bevy/Cargo.toml index 6a8d0c16e..8b003a616 100644 --- a/examples/bevy/Cargo.toml +++ b/examples/bevy/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "bevy-example" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/carousel/node/package.json b/examples/carousel/node/package.json index 6890a6453..eacdcba31 100644 --- a/examples/carousel/node/package.json +++ b/examples/carousel/node/package.json @@ -1,6 +1,6 @@ { "name": "carousel", - "version": "1.12.1", + "version": "1.13.0", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/carousel/rust/Cargo.toml b/examples/carousel/rust/Cargo.toml index 7e7964c6c..47dd66e32 100644 --- a/examples/carousel/rust/Cargo.toml +++ b/examples/carousel/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "carousel" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/ffmpeg/Cargo.toml b/examples/ffmpeg/Cargo.toml index a17ce3d6a..4971d87af 100644 --- a/examples/ffmpeg/Cargo.toml +++ b/examples/ffmpeg/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "ffmpeg" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/gallery/Cargo.toml b/examples/gallery/Cargo.toml index 35ca2fd83..12179ddb7 100644 --- a/examples/gallery/Cargo.toml +++ b/examples/gallery/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "gallery" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/gstreamer-player/Cargo.toml b/examples/gstreamer-player/Cargo.toml index b5da9604e..7fe7b8d48 100644 --- a/examples/gstreamer-player/Cargo.toml +++ b/examples/gstreamer-player/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "gstreamer-player" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/imagefilter/node/package.json b/examples/imagefilter/node/package.json index 3bc99da24..45611bbe2 100644 --- a/examples/imagefilter/node/package.json +++ b/examples/imagefilter/node/package.json @@ -1,6 +1,6 @@ { "name": "imagefilter", - "version": "1.12.1", + "version": "1.13.0", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/imagefilter/rust/Cargo.toml b/examples/imagefilter/rust/Cargo.toml index f118a66af..477d99904 100644 --- a/examples/imagefilter/rust/Cargo.toml +++ b/examples/imagefilter/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "imagefilter" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/maps/Cargo.toml b/examples/maps/Cargo.toml index e43cffef9..406eaa572 100644 --- a/examples/maps/Cargo.toml +++ b/examples/maps/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "maps" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" license = "MIT" diff --git a/examples/mcu-board-support/Cargo.toml b/examples/mcu-board-support/Cargo.toml index 6b10cb2c8..220606bb5 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.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" license = "MIT" @@ -119,9 +119,9 @@ stm32u5g9j-dk2 = [ ] [dependencies] -slint = { version = "=1.12.1", path = "../../api/rs/slint", default-features = false, features = ["compat-1-2", "renderer-software"] } +slint = { version = "=1.13.0", path = "../../api/rs/slint", default-features = false, features = ["compat-1-2", "renderer-software"] } i-slint-core = { workspace = true } -i-slint-core-macros = { version = "=1.12.1", path = "../../internal/core-macros" } +i-slint-core-macros = { version = "=1.13.0", path = "../../internal/core-macros" } derive_more = { workspace = true } embedded-graphics = { version = "0.8", optional = true } diff --git a/examples/mcu-embassy/Cargo.toml b/examples/mcu-embassy/Cargo.toml index a8fb08e00..eae040eaf 100644 --- a/examples/mcu-embassy/Cargo.toml +++ b/examples/mcu-embassy/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "mcu-embassy" -version = "1.12.1" +version = "1.13.0" edition = "2021" authors = ["David Haig "] readme = "README.md" diff --git a/examples/mcu-embassy/slint_generated/Cargo.toml b/examples/mcu-embassy/slint_generated/Cargo.toml index dff0bcf34..cc1b92c79 100644 --- a/examples/mcu-embassy/slint_generated/Cargo.toml +++ b/examples/mcu-embassy/slint_generated/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slint-generated" -version = "1.12.1" +version = "1.13.0" edition = "2021" build = "build.rs" authors = ["David Haig "] diff --git a/examples/memory/Cargo.toml b/examples/memory/Cargo.toml index 25f3e5ff8..90e9f3805 100644 --- a/examples/memory/Cargo.toml +++ b/examples/memory/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "memory" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/memory/package.json b/examples/memory/package.json index d9c6ee031..d3edd1cbf 100644 --- a/examples/memory/package.json +++ b/examples/memory/package.json @@ -1,6 +1,6 @@ { "name": "memory", - "version": "1.12.1", + "version": "1.13.0", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/opengl_texture/Cargo.toml b/examples/opengl_texture/Cargo.toml index 5dff162c7..fd2924565 100644 --- a/examples/opengl_texture/Cargo.toml +++ b/examples/opengl_texture/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "opengl_texture" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/opengl_underlay/Cargo.toml b/examples/opengl_underlay/Cargo.toml index 10be9f8bd..83a6b4f80 100644 --- a/examples/opengl_underlay/Cargo.toml +++ b/examples/opengl_underlay/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "opengl_underlay" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/plotter/Cargo.toml b/examples/plotter/Cargo.toml index 5e7f6e6cd..48dbe36e9 100644 --- a/examples/plotter/Cargo.toml +++ b/examples/plotter/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "plotter" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/slide_puzzle/Cargo.toml b/examples/slide_puzzle/Cargo.toml index 4992b0d57..a947997bd 100644 --- a/examples/slide_puzzle/Cargo.toml +++ b/examples/slide_puzzle/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slide_puzzle" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" publish = false diff --git a/examples/todo-mvc/rust/Cargo.toml b/examples/todo-mvc/rust/Cargo.toml index 81e3704fc..a8d469385 100644 --- a/examples/todo-mvc/rust/Cargo.toml +++ b/examples/todo-mvc/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "todo-mvc" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/todo/node/package.json b/examples/todo/node/package.json index 881da0b7a..ceb555b48 100644 --- a/examples/todo/node/package.json +++ b/examples/todo/node/package.json @@ -1,6 +1,6 @@ { "name": "todo", - "version": "1.12.1", + "version": "1.13.0", "main": "main.js", "type": "module", "dependencies": { diff --git a/examples/todo/rust/Cargo.toml b/examples/todo/rust/Cargo.toml index f90db249e..ab915eda6 100644 --- a/examples/todo/rust/Cargo.toml +++ b/examples/todo/rust/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "todo" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/uefi-demo/Cargo.toml b/examples/uefi-demo/Cargo.toml index 90101ad59..7d46a9b69 100644 --- a/examples/uefi-demo/Cargo.toml +++ b/examples/uefi-demo/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "uefi-demo" -version = "1.12.1" +version = "1.13.0" edition = "2021" license = "MIT" build = "build.rs" diff --git a/examples/virtual_keyboard/rust/Cargo.toml b/examples/virtual_keyboard/rust/Cargo.toml index 5091622e4..9f2c386db 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.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/examples/wgpu_texture/Cargo.toml b/examples/wgpu_texture/Cargo.toml index c63bd9501..62d1797a5 100644 --- a/examples/wgpu_texture/Cargo.toml +++ b/examples/wgpu_texture/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "wgpu_texture" -version = "1.12.1" +version = "1.13.0" authors = ["Slint Developers "] edition = "2021" build = "build.rs" diff --git a/internal/compiler/widgets/common/about-slint.slint b/internal/compiler/widgets/common/about-slint.slint index 7ba50d7dc..440f1ca63 100644 --- a/internal/compiler/widgets/common/about-slint.slint +++ b/internal/compiler/widgets/common/about-slint.slint @@ -22,7 +22,7 @@ export component AboutSlint { } Text { - text: "Version 1.12.1\nhttps://slint.dev/"; + text: "Version 1.13.0\nhttps://slint.dev/"; font-size: 10px; horizontal-alignment: center; } diff --git a/package.json b/package.json index c189ebf20..3ca30a69c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "slint_repository", - "version": "1.12.1", + "version": "1.13.0", "description": "", "main": "index.js", "scripts": { diff --git a/tests/manual/windowattributes/Cargo.toml b/tests/manual/windowattributes/Cargo.toml index ac483c132..8cc3748ca 100644 --- a/tests/manual/windowattributes/Cargo.toml +++ b/tests/manual/windowattributes/Cargo.toml @@ -20,4 +20,4 @@ name = "windowattributes" path = "main.rs" [dependencies] -slint = { version = "=1.12.1", path = "../../../api/rs/slint" } +slint = { version = "=1.13.0", path = "../../../api/rs/slint" } diff --git a/tools/figma-inspector/package.json b/tools/figma-inspector/package.json index 2188133d6..7c7a8e614 100644 --- a/tools/figma-inspector/package.json +++ b/tools/figma-inspector/package.json @@ -1,7 +1,7 @@ { "name": "slint.figma.plugin", "private": true, - "version": "1.12.1", + "version": "1.13.0", "type": "module", "scripts": { "dev": "vite build --watch --mode dev", diff --git a/tools/lsp/Cargo.toml b/tools/lsp/Cargo.toml index a17771cb1..f3247e4b0 100644 --- a/tools/lsp/Cargo.toml +++ b/tools/lsp/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://slint.dev" license.workspace = true repository.workspace = true rust-version.workspace = true -version = "1.12.1" +version = "1.13.0" categories = ["gui", "development-tools", "command-line-utilities"] keywords = ["lsp", "ui", "toolkit"] diff --git a/tools/slintpad/package.json b/tools/slintpad/package.json index ee8b7548a..3d7367e17 100644 --- a/tools/slintpad/package.json +++ b/tools/slintpad/package.json @@ -1,7 +1,7 @@ { "//": "cSpell: ignore codingame dragdrop femtovg frsource lumino treemended quickaccess ", "name": "slintpad", - "version": "1.12.1", + "version": "1.13.0", "description": "", "main": "index.js", "scripts": {