Bump version number to 1.0.0

This commit is contained in:
ogoffart 2023-02-03 07:29:12 +00:00 committed by Olivier Goffart
parent 8e0a8ca5cf
commit e7f48512ee
58 changed files with 109 additions and 109 deletions

View file

@ -3,7 +3,7 @@
[package]
name = "slint-build"
version = "0.3.4"
version = "1.0.0"
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 = "=0.3.4", path = "../../../internal/compiler", features = ["rust", "display-diagnostics", "software-renderer"] }
i-slint-compiler = { version = "=1.0.0", 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 = "0.3.4"
version = "1.0.0"
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 = "=0.3.4", path = "../../../internal/compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
i-slint-compiler = { version = "=1.0.0", 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 = "0.3.4"
version = "1.0.0"
authors = ["Slint Developers <info@slint-ui.com>"]
edition = "2021"
license = "GPL-3.0-only OR LicenseRef-Slint-commercial"
@ -115,9 +115,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 = "=0.3.4", path = "../../../internal/core", default-features = false }
slint-macros = { version = "=0.3.4", path = "../macros" }
i-slint-backend-selector = { version = "=0.3.4", path = "../../../internal/backends/selector" }
i-slint-core = { version = "=1.0.0", path = "../../../internal/core", default-features = false }
slint-macros = { version = "=1.0.0", path = "../macros" }
i-slint-backend-selector = { version = "=1.0.0", 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

@ -289,7 +289,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_0_3_4;
pub struct VersionCheck_1_0_0;
#[cfg(doctest)]
mod compile_fail_tests;