mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 14:21:16 +00:00
Bump version
This commit is contained in:
parent
af6d3661cb
commit
20cfb65e53
24 changed files with 58 additions and 54 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sixtyfps"
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0-only"
|
||||
|
@ -17,11 +17,11 @@ wayland = ["sixtyfps-rendering-backend-default/wayland"]
|
|||
|
||||
[dependencies]
|
||||
once_cell = "1.4"
|
||||
sixtyfps-macros = { version = "=0.0.1", path = "sixtyfps-macros" }
|
||||
sixtyfps-macros = { version = "=0.0.2", path = "sixtyfps-macros" }
|
||||
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
|
||||
vtable = { version = "0.1", path = "../../helper_crates/vtable" }
|
||||
sixtyfps-corelib = { version = "=0.0.1", path="../../sixtyfps_runtime/corelib" }
|
||||
sixtyfps-rendering-backend-default = { version = "=0.0.1", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||
sixtyfps-corelib = { version = "=0.0.2", path="../../sixtyfps_runtime/corelib" }
|
||||
sixtyfps-rendering-backend-default = { version = "=0.0.2", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||
pin-weak = "1"
|
||||
derive_more = "0.99.5"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ In your `Cargo.toml` add:
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
sixtyfps = "0.0.1"
|
||||
sixtyfps = "0.0.2"
|
||||
```
|
||||
|
||||
And in your `main.rs`:
|
||||
|
|
|
@ -62,11 +62,11 @@ In your Cargo.toml:
|
|||
build = "build.rs"
|
||||
|
||||
[dependencies]
|
||||
sixtyfps = "0.0.1"
|
||||
sixtyfps = "0.0.2"
|
||||
...
|
||||
|
||||
[build-dependencies]
|
||||
sixtyfps-build = "0.0.1"
|
||||
sixtyfps-build = "0.0.2"
|
||||
```
|
||||
|
||||
In the `build.rs` file:
|
||||
|
@ -291,7 +291,7 @@ macro_rules! include_modules {
|
|||
/// 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_0_1;
|
||||
pub struct VersionCheck_0_0_2;
|
||||
|
||||
#[cfg(doctest)]
|
||||
mod compile_fail_tests;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sixtyfps-build"
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0-only"
|
||||
|
@ -13,5 +13,5 @@ homepage = "https://sixtyfps.io"
|
|||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
sixtyfps-compilerlib = { version = "=0.0.1", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
|
||||
sixtyfps-compilerlib = { version = "=0.0.2", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
|
||||
thiserror = "1"
|
||||
|
|
|
@ -23,11 +23,11 @@ In your Cargo.toml:
|
|||
build = "build.rs"
|
||||
|
||||
[dependencies]
|
||||
sixtyfps = "0.0.1"
|
||||
sixtyfps = "0.0.2"
|
||||
...
|
||||
|
||||
[build-dependencies]
|
||||
sixtyfps-build = "0.0.1"
|
||||
sixtyfps-build = "0.0.2"
|
||||
```
|
||||
|
||||
In the `build.rs` file:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sixtyfps-macros"
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0-only"
|
||||
|
@ -16,5 +16,5 @@ path = "lib.rs"
|
|||
[dependencies]
|
||||
quote = "1.0"
|
||||
proc-macro2 = "1.0.17"
|
||||
sixtyfps-compilerlib = { version = "=0.0.1", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust"] }
|
||||
sixtyfps-compilerlib = { version = "=0.0.2", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust"] }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue