Bump version number to 1.0.2

This commit is contained in:
ogoffart 2023-04-20 14:28:48 +00:00 committed by Olivier Goffart
parent 30d0b11c1d
commit 53cce5bf44
63 changed files with 119 additions and 119 deletions

View file

@ -3,7 +3,7 @@
[package]
name = "slint-build"
version = "1.0.1"
version = "1.0.2"
authors = ["Slint Developers <info@slint-ui.com>"]
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.1", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] }
i-slint-compiler = { version = "=1.0.2", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] }
spin_on = "0.1"
thiserror = "1"

View file

@ -3,7 +3,7 @@
[package]
name = "slint-macros"
version = "1.0.1"
version = "1.0.2"
authors = ["Slint Developers <info@slint-ui.com>"]
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.1", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
i-slint-compiler = { version = "=1.0.2", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
proc-macro2 = "1.0.17"
quote = "1.0"

View file

@ -3,7 +3,7 @@
[package]
name = "slint"
version = "1.0.1"
version = "1.0.2"
authors = ["Slint Developers <info@slint-ui.com>"]
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.1", path = "../../../internal/core", default-features = false }
slint-macros = { version = "=1.0.1", path = "../macros" }
i-slint-backend-selector = { version = "=1.0.1", path = "../../../internal/backends/selector" }
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" }
const-field-offset = { version = "0.1.2", path = "../../../helper_crates/const-field-offset" }
document-features = { version = "0.2.0", optional = true }

View file

@ -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_1;
pub struct VersionCheck_1_0_2;
#[cfg(doctest)]
mod compile_fail_tests;