Bump version number to 1.3.2

This commit is contained in:
ogoffart 2023-12-01 08:05:15 +00:00
parent 361900aae8
commit b9255ab8e2
39 changed files with 59 additions and 59 deletions

View file

@ -101,26 +101,26 @@ keywords = ["gui", "toolkit", "graphics", "design", "ui"]
license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial"
repository = "https://github.com/slint-ui/slint" repository = "https://github.com/slint-ui/slint"
rust-version = "1.70" rust-version = "1.70"
version = "1.3.1" version = "1.3.2"
[workspace.dependencies] [workspace.dependencies]
i-slint-backend-linuxkms = { version = "=1.3.1", path = "internal/backends/linuxkms", default-features = false } i-slint-backend-linuxkms = { version = "=1.3.2", path = "internal/backends/linuxkms", default-features = false }
i-slint-backend-qt = { version = "=1.3.1", path="internal/backends/qt", default-features = false } i-slint-backend-qt = { version = "=1.3.2", path="internal/backends/qt", default-features = false }
i-slint-backend-selector = { version = "=1.3.1", path = "internal/backends/selector", default-features = false } i-slint-backend-selector = { version = "=1.3.2", path = "internal/backends/selector", default-features = false }
i-slint-backend-testing = { version = "=1.3.1", path = "internal/backends/testing", default-features = false } i-slint-backend-testing = { version = "=1.3.2", path = "internal/backends/testing", default-features = false }
i-slint-backend-winit = { version = "=1.3.1", path = "internal/backends/winit", default-features = false } i-slint-backend-winit = { version = "=1.3.2", path = "internal/backends/winit", default-features = false }
i-slint-backend-android-activity = { version = "=1.3.1", path = "internal/backends/android-activity", default-features = false } i-slint-backend-android-activity = { version = "=1.3.2", path = "internal/backends/android-activity", default-features = false }
i-slint-common = { version = "=1.3.1", path = "internal/common", default-features = false } i-slint-common = { version = "=1.3.2", path = "internal/common", default-features = false }
i-slint-compiler = { version = "=1.3.1", path = "internal/compiler", default-features = false } i-slint-compiler = { version = "=1.3.2", path = "internal/compiler", default-features = false }
i-slint-core = { version = "=1.3.1", path = "internal/core", default-features = false } i-slint-core = { version = "=1.3.2", path = "internal/core", default-features = false }
i-slint-core-macros = { version = "=1.3.1", path = "internal/core-macros", default-features = false } i-slint-core-macros = { version = "=1.3.2", path = "internal/core-macros", default-features = false }
i-slint-renderer-femtovg = { version = "=1.3.1", path = "internal/renderers/femtovg", default-features = false } i-slint-renderer-femtovg = { version = "=1.3.2", path = "internal/renderers/femtovg", default-features = false }
i-slint-renderer-skia = { version = "=1.3.1", path = "internal/renderers/skia", default-features = false } i-slint-renderer-skia = { version = "=1.3.2", path = "internal/renderers/skia", default-features = false }
slint = { version = "=1.3.1", path = "api/rs/slint", default-features = false } slint = { version = "=1.3.2", path = "api/rs/slint", default-features = false }
slint-build = { version = "=1.3.1", path = "api/rs/build", default-features = false } slint-build = { version = "=1.3.2", path = "api/rs/build", default-features = false }
slint-cpp = { version = "=1.3.1", path = "api/cpp", default-features = false } slint-cpp = { version = "=1.3.2", path = "api/cpp", default-features = false }
slint-interpreter = { version = "=1.3.1", path = "internal/interpreter", default_features = false } slint-interpreter = { version = "=1.3.2", path = "internal/interpreter", default_features = false }
slint-macros = { version = "=1.3.1", path = "api/rs/macros", default-features = false } slint-macros = { version = "=1.3.2", path = "api/rs/macros", default-features = false }
resvg = { version= "0.36.0", default-features = false, features = ["text"] } resvg = { version= "0.36.0", default-features = false, features = ["text"] }
fontdb = { version = "0.15.0", default-features = false } fontdb = { version = "0.15.0", default-features = false }

View file

@ -407,7 +407,7 @@ if(SLINT_BUILD_RUNTIME)
write_basic_package_version_file( write_basic_package_version_file(
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/Slint/SlintConfigVersion.cmake ${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/Slint/SlintConfigVersion.cmake
VERSION 1.3.1 VERSION 1.3.2
COMPATIBILITY SameMinorVersion COMPATIBILITY SameMinorVersion
) )
@ -456,7 +456,7 @@ set(CPACK_PACKAGE_VENDOR "Slint")
set(CPACK_VERBATIM_VARIABLES true) set(CPACK_VERBATIM_VARIABLES true)
set(CPACK_PACKAGE_VERSION_MAJOR 1) set(CPACK_PACKAGE_VERSION_MAJOR 1)
set(CPACK_PACKAGE_VERSION_MINOR 3) set(CPACK_PACKAGE_VERSION_MINOR 3)
set(CPACK_PACKAGE_VERSION_PATCH 1) set(CPACK_PACKAGE_VERSION_PATCH 2)
set(CPACK_PACKAGE_HOMEPAGE_URL "https://slint.dev") set(CPACK_PACKAGE_HOMEPAGE_URL "https://slint.dev")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/../../LICENSE.md") set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/../../LICENSE.md")
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/README.md") set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/README.md")

View file

@ -22,7 +22,7 @@ import textwrap
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
version = "1.3.1" version = "1.3.2"
project = f'Slint {version} C++ API' project = f'Slint {version} C++ API'
copyright = "SixtyFPS GmbH" copyright = "SixtyFPS GmbH"

View file

@ -28,7 +28,7 @@ else(SLINT_ESP_LOCAL_EXAMPLE)
FetchContent_Declare( FetchContent_Declare(
Slint Slint
GIT_REPOSITORY https://github.com/slint-ui/slint GIT_REPOSITORY https://github.com/slint-ui/slint
GIT_TAG v1.3.1 GIT_TAG v1.3.2
SOURCE_SUBDIR api/cpp SOURCE_SUBDIR api/cpp
) )
FetchContent_MakeAvailable(Slint) FetchContent_MakeAvailable(Slint)

View file

@ -4,7 +4,7 @@
description: "Slint — declarative GUI toolkit" description: "Slint — declarative GUI toolkit"
url: "https://slint.dev" url: "https://slint.dev"
license: "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial" license: "GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial"
version: "1.3.1" version: "1.3.2"
discussion: "https://github.com/slint-ui/slint/discussions" discussion: "https://github.com/slint-ui/slint/discussions"
documentation: "https://slint.dev/docs" documentation: "https://slint.dev/docs"
repository: "https://github.com/slint-ui/slint" repository: "https://github.com/slint-ui/slint"

View file

@ -1,6 +1,6 @@
{ {
"name": "slint-ui", "name": "slint-ui",
"version": "1.3.1", "version": "1.3.2",
"main": "index.js", "main": "index.js",
"types": "index.d.ts", "types": "index.d.ts",
"homepage": "https://github.com/slint-ui/slint", "homepage": "https://github.com/slint-ui/slint",

View file

@ -299,7 +299,7 @@ pub mod platform {
/// Helper type that helps checking that the generated code is generated for the right version /// Helper type that helps checking that the generated code is generated for the right version
#[doc(hidden)] #[doc(hidden)]
#[allow(non_camel_case_types)] #[allow(non_camel_case_types)]
pub struct VersionCheck_1_3_1; pub struct VersionCheck_1_3_2;
#[cfg(doctest)] #[cfg(doctest)]
mod compile_fail_tests; mod compile_fail_tests;

View file

@ -22,7 +22,7 @@ import textwrap
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
version = "1.3.1" version = "1.3.2"
project = "Slint Reference" project = "Slint Reference"
html_title = f'Slint {version} Reference' # Set title here, otherwise it will say "Slint Reference documentation" html_title = f'Slint {version} Reference' # Set title here, otherwise it will say "Slint Reference documentation"

View file

@ -1,6 +1,6 @@
{ {
"name": "memory", "name": "memory",
"version": "1.3.1", "version": "1.3.2",
"main": "main.js", "main": "main.js",
"type": "module", "type": "module",
"dependencies": { "dependencies": {

View file

@ -3,7 +3,7 @@
[package] [package]
name = "src" name = "src"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"

View file

@ -16,7 +16,7 @@ cd memory
Then we edit `Cargo.toml` to add the slint dependency using `cargo add`: Then we edit `Cargo.toml` to add the slint dependency using `cargo add`:
```sh ```sh
cargo add slint@1.3.1 cargo add slint@1.3.2
``` ```
Finally we copy the hello world program from the [Slint documentation](https://slint.dev/docs/rust/slint/) into our `src/main.rs`: Finally we copy the hello world program from the [Slint documentation](https://slint.dev/docs/rust/slint/) into our `src/main.rs`:

View file

@ -2,7 +2,7 @@
"name": "slint", "name": "slint",
"displayName": "Slint", "displayName": "Slint",
"description": "Slint Language extension", "description": "Slint Language extension",
"version": "1.3.1", "version": "1.3.2",
"publisher": "Slint", "publisher": "Slint",
"icon": "extension-logo.png", "icon": "extension-logo.png",
"license": "GPL-3.0", "license": "GPL-3.0",

View file

@ -3,7 +3,7 @@
[package] [package]
name = "_7guis" name = "_7guis"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -1,6 +1,6 @@
{ {
"name": "carousel", "name": "carousel",
"version": "1.3.1", "version": "1.3.2",
"main": "main.js", "main": "main.js",
"type": "module", "type": "module",
"dependencies": { "dependencies": {

View file

@ -3,7 +3,7 @@
[package] [package]
name = "carousel" name = "carousel"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "energy-monitor" name = "energy-monitor"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "ffmpeg" name = "ffmpeg"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "gallery" name = "gallery"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -1,6 +1,6 @@
{ {
"name": "imagefilter", "name": "imagefilter",
"version": "1.3.1", "version": "1.3.2",
"main": "main.js", "main": "main.js",
"type": "module", "type": "module",
"dependencies": { "dependencies": {

View file

@ -3,7 +3,7 @@
[package] [package]
name = "imagefilter" name = "imagefilter"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -3,7 +3,7 @@
[package] [package]
name = "mcu-board-support" name = "mcu-board-support"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
@ -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-core", "slint/libm", "tt21100"] 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-core", "slint/libm", "tt21100"]
[dependencies] [dependencies]
slint = { version = "=1.3.1", path = "../../api/rs/slint", default-features = false, features = ["compat-1-2", "renderer-software"] } slint = { version = "=1.3.2", path = "../../api/rs/slint", default-features = false, features = ["compat-1-2", "renderer-software"] }
i-slint-core-macros = { version = "=1.3.1", path = "../../internal/core-macros" } i-slint-core-macros = { version = "=1.3.2", path = "../../internal/core-macros" }
derive_more = "0.99.5" derive_more = "0.99.5"
embedded-graphics = { version = "0.7.1", optional = true } embedded-graphics = { version = "0.7.1", optional = true }

View file

@ -3,7 +3,7 @@
[package] [package]
name = "memory" name = "memory"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -1,6 +1,6 @@
{ {
"name": "memory", "name": "memory",
"version": "1.3.1", "version": "1.3.2",
"main": "main.js", "main": "main.js",
"type": "module", "type": "module",
"dependencies": { "dependencies": {

View file

@ -3,7 +3,7 @@
[package] [package]
name = "opengl_texture" name = "opengl_texture"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "opengl_underlay" name = "opengl_underlay"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "plotter" name = "plotter"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -1,6 +1,6 @@
{ {
"name": "printerdemo", "name": "printerdemo",
"version": "1.3.1", "version": "1.3.2",
"main": "main.js", "main": "main.js",
"type": "module", "type": "module",
"dependencies": { "dependencies": {

View file

@ -3,7 +3,7 @@
[package] [package]
name = "printerdemo" name = "printerdemo"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "printerdemo_mcu" name = "printerdemo_mcu"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -1,6 +1,6 @@
{ {
"name": "printerdemo", "name": "printerdemo",
"version": "1.3.1", "version": "1.3.2",
"main": "main.js", "main": "main.js",
"type": "module", "type": "module",
"dependencies": { "dependencies": {

View file

@ -3,7 +3,7 @@
[package] [package]
name = "printerdemo_old" name = "printerdemo_old"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slide_puzzle" name = "slide_puzzle"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -1,6 +1,6 @@
{ {
"name": "todo", "name": "todo",
"version": "1.3.1", "version": "1.3.2",
"main": "main.js", "main": "main.js",
"type": "module", "type": "module",
"dependencies": { "dependencies": {

View file

@ -3,7 +3,7 @@
[package] [package]
name = "todo" name = "todo"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "uefi-demo" name = "uefi-demo"
version = "1.3.1" version = "1.3.2"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "virtual_keyboard" name = "virtual_keyboard"
version = "1.3.1" version = "1.3.2"
authors = ["Slint Developers <info@slint.dev>"] authors = ["Slint Developers <info@slint.dev>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -87,7 +87,7 @@ export component AboutSlint {
} }
Text { Text {
text: "Version 1.3.1\nhttps://slint.dev/"; text: "Version 1.3.2\nhttps://slint.dev/";
font-size: 10px; font-size: 10px;
horizontal-alignment: center; horizontal-alignment: center;
} }

View file

@ -10,7 +10,7 @@ homepage = "https://slint.dev"
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
rust-version.workspace = true rust-version.workspace = true
version = "1.3.1" version = "1.3.2"
categories = ["gui", "development-tools", "command-line-utilities"] categories = ["gui", "development-tools", "command-line-utilities"]
keywords = ["lsp", "ui", "toolkit"] keywords = ["lsp", "ui", "toolkit"]

View file

@ -1,7 +1,7 @@
{ {
"//": "cSpell: ignore codingame dragdrop frsource lumino ", "//": "cSpell: ignore codingame dragdrop frsource lumino ",
"name": "slintpad", "name": "slintpad",
"version": "1.3.1", "version": "1.3.2",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {