Update version number everywhere

This commit is contained in:
Olivier Goffart 2021-01-28 16:33:15 +01:00
parent 1d6a0b0b9c
commit fea2478859
22 changed files with 53 additions and 53 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "sixtyfps"
version = "0.0.4"
version = "0.0.5"
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.4", path = "sixtyfps-macros" }
sixtyfps-macros = { version = "=0.0.5", 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.4", path="../../sixtyfps_runtime/corelib" }
sixtyfps-rendering-backend-default = { version = "=0.0.4", path="../../sixtyfps_runtime/rendering_backends/default" }
sixtyfps-corelib = { version = "=0.0.5", path="../../sixtyfps_runtime/corelib" }
sixtyfps-rendering-backend-default = { version = "=0.0.5", path="../../sixtyfps_runtime/rendering_backends/default" }
derive_more = "0.99.5"
[build-dependencies]

View file

@ -22,7 +22,7 @@ In your `Cargo.toml` add:
```toml
[dependencies]
sixtyfps = "0.0.4"
sixtyfps = "0.0.5"
```
And in your `main.rs`:

View file

@ -63,11 +63,11 @@ In your Cargo.toml:
build = "build.rs"
[dependencies]
sixtyfps = "0.0.4"
sixtyfps = "0.0.5"
...
[build-dependencies]
sixtyfps-build = "0.0.4"
sixtyfps-build = "0.0.5"
```
In the `build.rs` file:
@ -378,7 +378,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_4;
pub struct VersionCheck_0_0_5;
#[cfg(doctest)]
mod compile_fail_tests;

View file

@ -1,6 +1,6 @@
[package]
name = "sixtyfps-build"
version = "0.0.4"
version = "0.0.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.0.4", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
sixtyfps-compilerlib = { version = "=0.0.5", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
thiserror = "1"
spin_on = "0.1"

View file

@ -23,11 +23,11 @@ In your Cargo.toml:
build = "build.rs"
[dependencies]
sixtyfps = "0.0.4"
sixtyfps = "0.0.5"
...
[build-dependencies]
sixtyfps-build = "0.0.4"
sixtyfps-build = "0.0.5"
```
In the `build.rs` file:

View file

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