Bump version

This commit is contained in:
Olivier Goffart 2020-10-21 16:49:45 +02:00
parent af6d3661cb
commit 20cfb65e53
24 changed files with 58 additions and 54 deletions

View file

@ -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"

View file

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

View file

@ -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;

View file

@ -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"

View file

@ -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:

View 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"] }