Bump version number to 0.2.1

This commit is contained in:
ogoffart 2022-02-10 08:21:37 +00:00 committed by Olivier Goffart
parent a9c76d44a2
commit ecd0fb7ecd
52 changed files with 91 additions and 91 deletions

View file

@ -195,7 +195,7 @@ configure_package_config_file("cmake/SlintConfig.cmake.in" "${CMAKE_CURRENT_BINA
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 0.2.0 VERSION 0.2.1
COMPATIBILITY SameMinorVersion COMPATIBILITY SameMinorVersion
) )
@ -241,7 +241,7 @@ set(CPACK_PACKAGE_VENDOR "Slint")
set(CPACK_VERBATIM_VARIABLES true) set(CPACK_VERBATIM_VARIABLES true)
set(CPACK_PACKAGE_VERSION_MAJOR 0) set(CPACK_PACKAGE_VERSION_MAJOR 0)
set(CPACK_PACKAGE_VERSION_MINOR 2) set(CPACK_PACKAGE_VERSION_MINOR 2)
set(CPACK_PACKAGE_VERSION_PATCH 0) set(CPACK_PACKAGE_VERSION_PATCH 1)
set(CPACK_PACKAGE_HOMEPAGE_URL "https://slint-ui.com") set(CPACK_PACKAGE_HOMEPAGE_URL "https://slint-ui.com")
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

@ -3,7 +3,7 @@
[package] [package]
name = "slint-cpp" name = "slint-cpp"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"
@ -32,10 +32,10 @@ backend-gl-x11 = ["i-slint-backend-selector/backend-gl-x11"]
default = ["backend-gl-all", "backend-qt"] default = ["backend-gl-all", "backend-qt"]
[dependencies] [dependencies]
i-slint-backend-selector = { version = "=0.2.0", path="../../internal/backends/selector" } i-slint-backend-selector = { version = "=0.2.1", path="../../internal/backends/selector" }
i-slint-backend-testing = { version = "=0.2.0", path="../../internal/backends/testing", optional = true } i-slint-backend-testing = { version = "=0.2.1", path="../../internal/backends/testing", optional = true }
i-slint-core = { version = "=0.2.0", path="../../internal/core", features = ["ffi"] } i-slint-core = { version = "=0.2.1", path="../../internal/core", features = ["ffi"] }
slint-interpreter = { version = "=0.2.0", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-0-2-0"], optional = true } slint-interpreter = { version = "=0.2.1", path="../../internal/interpreter", default-features = false, features = ["ffi", "compat-0-2-0"], optional = true }
[build-dependencies] [build-dependencies]
anyhow = "1.0" anyhow = "1.0"

View file

@ -26,7 +26,7 @@ copyright = "2022, info@slint-ui.com"
author = "info@slint-ui.com" author = "info@slint-ui.com"
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
version = "0.2.0" version = "0.2.1"
cpp_index_common_prefix = ["slint::", "slint::interpreter::"] cpp_index_common_prefix = ["slint::", "slint::interpreter::"]

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint-node" name = "slint-node"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"
@ -20,9 +20,9 @@ crate-type = ["cdylib"]
name = "slint_node_native" name = "slint_node_native"
[dependencies] [dependencies]
i-slint-compiler = { version = "=0.2.0", path="../../../internal/compiler" } i-slint-compiler = { version = "=0.2.1", path="../../../internal/compiler" }
i-slint-core = { version = "=0.2.0", path="../../../internal/core" } i-slint-core = { version = "=0.2.1", path="../../../internal/core" }
slint-interpreter = { version = "=0.2.0", path="../../../internal/interpreter", features = ["display-diagnostics"] } slint-interpreter = { version = "=0.2.1", path="../../../internal/interpreter", features = ["display-diagnostics"] }
vtable = { version = "0.1.1", path="../../../helper_crates/vtable" } vtable = { version = "0.1.1", path="../../../helper_crates/vtable" }

View file

@ -1,6 +1,6 @@
{ {
"name": "slint-ui", "name": "slint-ui",
"version": "0.2.0", "version": "0.2.1",
"homepage": "https://github.com/slint-ui/slint", "homepage": "https://github.com/slint-ui/slint",
"license": "SEE LICENSE IN LICENSE.md", "license": "SEE LICENSE IN LICENSE.md",
"repository": { "repository": {

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint-build" name = "slint-build"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -19,7 +19,7 @@ path = "lib.rs"
default = [] default = []
[dependencies] [dependencies]
i-slint-compiler = { version = "=0.2.0", path = "../../../internal/compiler", features = ["rust", "display-diagnostics"] } i-slint-compiler = { version = "=0.2.1", path = "../../../internal/compiler", features = ["rust", "display-diagnostics"] }
spin_on = "0.1" spin_on = "0.1"
thiserror = "1" thiserror = "1"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint-macros" name = "slint-macros"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -17,7 +17,7 @@ proc-macro = true
path = "lib.rs" path = "lib.rs"
[dependencies] [dependencies]
i-slint-compiler = { version = "=0.2.0", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] } i-slint-compiler = { version = "=0.2.1", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
proc-macro2 = "1.0.17" proc-macro2 = "1.0.17"
quote = "1.0" quote = "1.0"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint" name = "slint"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -51,9 +51,9 @@ backend-gl-wayland = ["i-slint-backend-selector/backend-gl-wayland", "std"]
[dependencies] [dependencies]
i-slint-core = { version = "=0.2.0", path="../../../internal/core", default-features = false } i-slint-core = { version = "=0.2.1", path="../../../internal/core", default-features = false }
slint-macros = { version = "=0.2.0", path = "../macros" } slint-macros = { version = "=0.2.1", path = "../macros" }
i-slint-backend-selector = { version = "=0.2.0", path="../../../internal/backends/selector" } i-slint-backend-selector = { version = "=0.2.1", path="../../../internal/backends/selector" }
const-field-offset = { version = "0.1.2", path = "../../../helper_crates/const-field-offset" } const-field-offset = { version = "0.1.2", path = "../../../helper_crates/const-field-offset" }
document-features = "0.1.0" document-features = "0.1.0"

View file

@ -539,7 +539,7 @@ macro_rules! include_modules {
/// 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_0_2_0; pub struct VersionCheck_0_2_1;
#[cfg(doctest)] #[cfg(doctest)]
mod compile_fail_tests; mod compile_fail_tests;

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint-wasm-interpreter" name = "slint-wasm-interpreter"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "src" name = "src"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "_7gui" name = "_7gui"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -3,7 +3,7 @@
[package] [package]
name = "gallery" name = "gallery"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "imagefilter" name = "imagefilter"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -3,7 +3,7 @@
[package] [package]
name = "memory" name = "memory"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -1,6 +1,6 @@
{ {
"name": "memory", "name": "memory",
"version": "0.2.0", "version": "0.2.1",
"main": "main.js", "main": "main.js",
"dependencies": { "dependencies": {
"slint-ui": "../../api/node" "slint-ui": "../../api/node"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "opengl_underlay" name = "opengl_underlay"
version = "0.1.6" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "plotter" name = "plotter"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -1,6 +1,6 @@
{ {
"name": "printerdemo", "name": "printerdemo",
"version": "0.2.0", "version": "0.2.1",
"main": "main.js", "main": "main.js",
"dependencies": { "dependencies": {
"slint-ui": "../../../api/node" "slint-ui": "../../../api/node"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "printerdemo" name = "printerdemo"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -1,6 +1,6 @@
{ {
"name": "printerdemo", "name": "printerdemo",
"version": "0.2.0", "version": "0.2.1",
"main": "main.js", "main": "main.js",
"dependencies": { "dependencies": {
"slint-ui": "../../../api/node" "slint-ui": "../../../api/node"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "printerdemo_old" name = "printerdemo_old"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
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 = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -1,6 +1,6 @@
{ {
"name": "todo", "name": "todo",
"version": "0.2.0", "version": "0.2.1",
"main": "main.js", "main": "main.js",
"dependencies": { "dependencies": {
"slint-ui": "../../../api/node" "slint-ui": "../../../api/node"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "todo" name = "todo"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-backend-gl" name = "i-slint-backend-gl"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -24,8 +24,8 @@ x11 = ["winit/x11", "glutin/x11", "copypasta/x11"]
default = ["svg"] default = ["svg"]
[dependencies] [dependencies]
i-slint-core = { version = "=0.2.0", path = "../../../internal/core" } i-slint-core = { version = "=0.2.1", path = "../../../internal/core" }
i-slint-common = { version = "=0.2.0", path = "../../../internal/common" } i-slint-common = { version = "=0.2.1", path = "../../../internal/common" }
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" } const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
vtable = { version = "0.1", path = "../../../helper_crates/vtable" } vtable = { version = "0.1", path = "../../../helper_crates/vtable" }

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-backend-mcu" name = "i-slint-backend-mcu"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -28,8 +28,8 @@ std = ["i-slint-core/std"]
default = ["simulator"] default = ["simulator"]
[dependencies] [dependencies]
i-slint-common = { version = "=0.2.0", path = "../../../internal/common", default-features = false } i-slint-common = { version = "=0.2.1", path = "../../../internal/common", default-features = false }
i-slint-core = { version = "=0.2.0", path = "../../../internal/core", default-features = false } i-slint-core = { version = "=0.2.1", path = "../../../internal/core", default-features = false }
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" } const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
vtable = { version = "0.1", path = "../../../helper_crates/vtable" } vtable = { version = "0.1", path = "../../../helper_crates/vtable" }

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-backend-qt" name = "i-slint-backend-qt"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -20,9 +20,9 @@ default = ["rtti"]
path = "lib.rs" path = "lib.rs"
[dependencies] [dependencies]
i-slint-common = { version = "=0.2.0", path = "../../../internal/common" } i-slint-common = { version = "=0.2.1", path = "../../../internal/common" }
i-slint-core-macros = { version = "=0.2.0", path = "../../../internal/core-macros" } i-slint-core-macros = { version = "=0.2.1", path = "../../../internal/core-macros" }
i-slint-core = { version = "=0.2.0", path = "../../../internal/core" } i-slint-core = { version = "=0.2.1", path = "../../../internal/core" }
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" } const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
vtable = { version = "0.1", path = "../../../helper_crates/vtable" } vtable = { version = "0.1", path = "../../../helper_crates/vtable" }

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-backend-selector" name = "i-slint-backend-selector"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -20,8 +20,8 @@ backend-gl-wayland = ["i-slint-backend-gl/wayland"]
backend-gl-x11 = ["i-slint-backend-gl/x11"] backend-gl-x11 = ["i-slint-backend-gl/x11"]
[dependencies] [dependencies]
i-slint-core = { version = "=0.2.0", path = "../../../internal/core", default-features = false } i-slint-core = { version = "=0.2.1", path = "../../../internal/core", default-features = false }
i-slint-backend-gl = { version = "=0.2.0", path = "../gl", optional = true } i-slint-backend-gl = { version = "=0.2.1", path = "../gl", optional = true }
i-slint-backend-qt = { version = "=0.2.0", path = "../qt", optional = true } i-slint-backend-qt = { version = "=0.2.1", path = "../qt", optional = true }
cfg-if = "1" cfg-if = "1"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-backend-testing" name = "i-slint-backend-testing"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -16,6 +16,6 @@ publish = false
path = "lib.rs" path = "lib.rs"
[dependencies] [dependencies]
i-slint-core = { version = "=0.2.0", path = "../../../internal/core" } i-slint-core = { version = "=0.2.1", path = "../../../internal/core" }
image = { version = "0.24.0", default-features = false, features = ["png"] } image = { version = "0.24.0", default-features = false, features = ["png"] }

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-common" name = "i-slint-common"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-compiler" name = "i-slint-compiler"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
build = "build.rs" build = "build.rs"
@ -29,7 +29,7 @@ display-diagnostics = ["codemap", "codemap-diagnostic"]
[dependencies] [dependencies]
i-slint-common = { version = "=0.2.0", path = "../common" } i-slint-common = { version = "=0.2.1", path = "../common" }
num_enum = "0.5.1" num_enum = "0.5.1"
rowan = "0.15.3" rowan = "0.15.3"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-parser-test-macro" name = "i-slint-parser-test-macro"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -100,7 +100,7 @@ export AboutSlint := Rectangle {
preferred-width: 256px; preferred-width: 256px;
} }
Text { Text {
text: "Version 0.2.0\nhttps://slint-ui.com/"; text: "Version 0.2.1\nhttps://slint-ui.com/";
font-size: 10px; font-size: 10px;
horizontal-alignment: center; horizontal-alignment: center;
} }

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-core-macros" name = "i-slint-core-macros"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "i-slint-core" name = "i-slint-core"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -31,8 +31,8 @@ unsafe_single_core = []
default = ["std"] default = ["std"]
[dependencies] [dependencies]
i-slint-common = { version = "=0.2.0", path = "../common" } i-slint-common = { version = "=0.2.1", path = "../common" }
i-slint-core-macros = { version = "=0.2.0", path = "../core-macros" } i-slint-core-macros = { version = "=0.2.1", path = "../core-macros" }
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" } const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
vtable = { version="0.1.1", path = "../../helper_crates/vtable" } vtable = { version="0.1.1", path = "../../helper_crates/vtable" }

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint-interpreter" name = "slint-interpreter"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -57,9 +57,9 @@ backend-gl-wayland = ["i-slint-backend-selector/backend-gl-wayland", "std"]
[dependencies] [dependencies]
i-slint-compiler = { version = "=0.2.0", path = "../compiler" } i-slint-compiler = { version = "=0.2.1", path = "../compiler" }
i-slint-core = { version = "=0.2.0", path = "../core", features = ["rtti"] } i-slint-core = { version = "=0.2.1", path = "../core", features = ["rtti"] }
i-slint-backend-selector = { version = "=0.2.0", path = "../../internal/backends/selector" } i-slint-backend-selector = { version = "=0.2.1", path = "../../internal/backends/selector" }
vtable = { version = "0.1.1", path="../../helper_crates/vtable" } vtable = { version = "0.1.1", path="../../helper_crates/vtable" }
@ -75,7 +75,7 @@ version = "0.1"
optional = true optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
i-slint-backend-gl = { version = "=0.2.0", path = "../../internal/backends/gl" } i-slint-backend-gl = { version = "=0.2.1", path = "../../internal/backends/gl" }
[dev-dependencies] [dev-dependencies]
i-slint-backend-testing = { path = "../../internal/backends/testing" } i-slint-backend-testing = { path = "../../internal/backends/testing" }

View file

@ -3,7 +3,7 @@
[package] [package]
name = "doctests" name = "doctests"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -3,7 +3,7 @@
[package] [package]
name = "test-driver-cpp" name = "test-driver-cpp"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -3,7 +3,7 @@
[package] [package]
name = "test_driver_lib" name = "test_driver_lib"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -3,7 +3,7 @@
[package] [package]
name = "test-driver-interpreter" name = "test-driver-interpreter"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -3,7 +3,7 @@
[package] [package]
name = "test-driver-nodejs" name = "test-driver-nodejs"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
publish = false publish = false

View file

@ -3,7 +3,7 @@
[package] [package]
name = "test-driver-rust" name = "test-driver-rust"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint-compiler" name = "slint-compiler"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -17,7 +17,7 @@ name = "slint-compiler"
path = "main.rs" path = "main.rs"
[dependencies] [dependencies]
i-slint-compiler = { version = "=0.2.0", path = "../../internal/compiler", features = ["display-diagnostics", "cpp", "rust"]} i-slint-compiler = { version = "=0.2.1", path = "../../internal/compiler", features = ["display-diagnostics", "cpp", "rust"]}
clap = { version = "3.0.5", features=["derive", "wrap_help"] } clap = { version = "3.0.5", features=["derive", "wrap_help"] }
proc-macro2 = "1.0.11" proc-macro2 = "1.0.11"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "figma_import" name = "figma_import"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only" license = "GPL-3.0-only"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint-fmt" name = "slint-fmt"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint-lsp" name = "slint-lsp"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -30,10 +30,10 @@ backend-gl-x11 = ["slint-interpreter/backend-gl-x11"]
default = ["backend-qt", "backend-gl-all"] default = ["backend-qt", "backend-gl-all"]
[dependencies] [dependencies]
i-slint-compiler = { version = "=0.2.0", path = "../../internal/compiler"} i-slint-compiler = { version = "=0.2.1", path = "../../internal/compiler"}
i-slint-core = { version = "=0.2.0", path = "../../internal/core"} i-slint-core = { version = "=0.2.1", path = "../../internal/core"}
slint-interpreter = { version = "=0.2.0", path = "../../internal/interpreter", default-features = false, features = ["compat-0-2-0"] } slint-interpreter = { version = "=0.2.1", path = "../../internal/interpreter", default-features = false, features = ["compat-0-2-0"] }
i-slint-backend-selector = { version = "=0.2.0", path="../../internal/backends/selector" } i-slint-backend-selector = { version = "=0.2.1", path="../../internal/backends/selector" }
clap = { version = "3.0.5", features=["derive", "wrap_help"] } clap = { version = "3.0.5", features=["derive", "wrap_help"] }
crossbeam-channel = "0.5" # must match the version used by lsp-server crossbeam-channel = "0.5" # must match the version used by lsp-server

View file

@ -1,6 +1,6 @@
{ {
"name": "slint-online-editor", "name": "slint-online-editor",
"version": "0.2.0", "version": "0.2.1",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View file

@ -3,7 +3,7 @@
[package] [package]
name = "syntax_updater" name = "syntax_updater"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"

View file

@ -3,7 +3,7 @@
[package] [package]
name = "slint-viewer" name = "slint-viewer"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -22,9 +22,9 @@ backend-gl-x11 = ["slint-interpreter/backend-gl-x11"]
default = ["backend-qt", "backend-gl-all"] default = ["backend-qt", "backend-gl-all"]
[dependencies] [dependencies]
i-slint-core = { version = "=0.2.0", path="../../internal/core" } i-slint-core = { version = "=0.2.1", path="../../internal/core" }
slint-interpreter = { version = "=0.2.0", path = "../../internal/interpreter", default-features = false, features = ["display-diagnostics", "compat-0-2-0"] } slint-interpreter = { version = "=0.2.1", path = "../../internal/interpreter", default-features = false, features = ["display-diagnostics", "compat-0-2-0"] }
i-slint-backend-selector = { version = "=0.2.0", path="../../internal/backends/selector" } i-slint-backend-selector = { version = "=0.2.1", path="../../internal/backends/selector" }
vtable = { version = "0.1", path="../../helper_crates/vtable" } vtable = { version = "0.1", path="../../helper_crates/vtable" }

View file

@ -2,7 +2,7 @@
"name": "slint", "name": "slint",
"displayName": "Slint", "displayName": "Slint",
"description": "Slint Language extension", "description": "Slint Language extension",
"version": "0.2.0", "version": "0.2.1",
"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 = "xtask" name = "xtask"
version = "0.2.0" version = "0.2.1"
authors = ["Slint Developers <info@slint-ui.com>"] authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021" edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial" license = "GPL-3.0-only OR LicenseRef-Slint-commercial"