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-rendering-backend-default"
version = "0.0.5"
version = "0.0.6"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "GPL-3.0-only"
@ -17,19 +17,19 @@ wayland = ["sixtyfps-rendering-backend-gl/wayland"]
default = ["sixtyfps-rendering-backend-gl"]
[dependencies]
sixtyfps-corelib = { version = "=0.0.5", path = "../../corelib" }
sixtyfps-rendering-backend-gl = { version = "=0.0.5", path = "../gl", optional = true }
sixtyfps-rendering-backend-qt = { version = "=0.0.5", path = "../qt", optional = true }
sixtyfps-corelib = { version = "=0.0.6", path = "../../corelib" }
sixtyfps-rendering-backend-gl = { version = "=0.0.6", path = "../gl", optional = true }
sixtyfps-rendering-backend-qt = { version = "=0.0.6", path = "../qt", optional = true }
cfg-if = "1"
once_cell = "1.5"
# Desktop platform uses the Qt backend by default
[target.'cfg(any(target_os="windows", target_os="macos", target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
sixtyfps-rendering-backend-qt = { version = "=0.0.5", path = "../qt" }
sixtyfps-rendering-backend-qt = { version = "=0.0.6", path = "../qt" }
# Other platform uses the Gl backend
[target.'cfg(not(any(target_os="windows", target_os="macos", target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd")))'.dependencies]
sixtyfps-rendering-backend-gl = { version = "=0.0.5", path = "../gl" }
sixtyfps-rendering-backend-gl = { version = "=0.0.6", path = "../gl" }

View file

@ -1,6 +1,6 @@
[package]
name = "sixtyfps-rendering-backend-gl"
version = "0.0.5"
version = "0.0.6"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "GPL-3.0-only"
@ -18,7 +18,7 @@ svg = ["resvg", "usvg", "tiny-skia"]
default = ["x11", "svg"]
[dependencies]
sixtyfps-corelib = { version = "=0.0.5", path = "../../corelib", features = ["femtovg"] }
sixtyfps-corelib = { version = "=0.0.6", path = "../../corelib", features = ["femtovg"] }
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
image = { version = "0.23.12", default-features = false }
rgb = "0.8"

View file

@ -1,6 +1,6 @@
[package]
name = "sixtyfps-rendering-backend-qt"
version = "0.0.5"
version = "0.0.6"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "GPL-3.0-only"
@ -20,8 +20,8 @@ cpp = "0.5.5"
qttypes = { version = "0.2", default-features = false }
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
vtable = { version = "0.1", path = "../../../helper_crates/vtable" }
sixtyfps-corelib-macros = { version = "=0.0.5", path = "../../corelib_macros" }
sixtyfps-corelib = { version = "=0.0.5", path = "../../corelib" }
sixtyfps-corelib-macros = { version = "=0.0.6", path = "../../corelib_macros" }
sixtyfps-corelib = { version = "=0.0.6", path = "../../corelib" }
euclid = "0.22.1"
pin-weak = "1"
once_cell = "1"