Bump version number to 0.1.5

This commit is contained in:
ogoffart 2021-10-26 07:36:54 +00:00
parent 6671aaefcc
commit b25ae6fbcd
48 changed files with 83 additions and 83 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "sixtyfps"
version = "0.1.4"
version = "0.1.5"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "GPL-3.0-only"
@ -20,11 +20,11 @@ default = ["backend-gl", "x11", "backend-qt"]
[dependencies]
once_cell = "1.5"
sixtyfps-macros = { version = "=0.1.4", path = "sixtyfps-macros" }
sixtyfps-macros = { version = "=0.1.5", path = "sixtyfps-macros" }
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
vtable = { version = "0.1.2", path = "../../helper_crates/vtable" }
sixtyfps-corelib = { version = "=0.1.4", path="../../sixtyfps_runtime/corelib" }
sixtyfps-rendering-backend-default = { version = "=0.1.4", path="../../sixtyfps_runtime/rendering_backends/default" }
sixtyfps-corelib = { version = "=0.1.5", path="../../sixtyfps_runtime/corelib" }
sixtyfps-rendering-backend-default = { version = "=0.1.5", path="../../sixtyfps_runtime/rendering_backends/default" }
pin-weak = "1"
[package.metadata.docs.rs]

View file

@ -725,7 +725,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_1_4;
pub struct VersionCheck_0_1_5;
#[cfg(doctest)]
mod compile_fail_tests;

View file

@ -1,6 +1,6 @@
[package]
name = "sixtyfps-build"
version = "0.1.4"
version = "0.1.5"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "GPL-3.0-only"
@ -13,6 +13,6 @@ homepage = "https://sixtyfps.io"
path = "lib.rs"
[dependencies]
sixtyfps-compilerlib = { version = "=0.1.4", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
sixtyfps-compilerlib = { version = "=0.1.5", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
thiserror = "1"
spin_on = "0.1"

View file

@ -1,6 +1,6 @@
[package]
name = "sixtyfps-macros"
version = "0.1.4"
version = "0.1.5"
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.1.4", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
sixtyfps-compilerlib = { version = "=0.1.5", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
spin_on = "0.1"