Bump version number

(Does not include docs and README yet)
This commit is contained in:
Olivier Goffart 2021-04-26 13:16:03 +02:00
parent 1025cc6020
commit 3380383787
22 changed files with 55 additions and 55 deletions

View file

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

View file

@ -413,7 +413,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_5;
pub struct VersionCheck_0_0_6;
#[cfg(doctest)]
mod compile_fail_tests;

View file

@ -1,6 +1,6 @@
[package]
name = "sixtyfps-build"
version = "0.0.5"
version = "0.0.6"
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.0.5", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
sixtyfps-compilerlib = { version = "=0.0.6", 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.0.5"
version = "0.0.6"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "GPL-3.0-only"
@ -16,6 +16,6 @@ path = "lib.rs"
[dependencies]
quote = "1.0"
proc-macro2 = "1.0.17"
sixtyfps-compilerlib = { version = "=0.0.5", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
sixtyfps-compilerlib = { version = "=0.0.6", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
spin_on = "0.1"