Bump version number to 0.2.0

This commit is contained in:
ogoffart 2022-01-24 09:59:47 +00:00 committed by Olivier Goffart
parent 2b629a811b
commit 42f1964e54
51 changed files with 91 additions and 91 deletions

View file

@ -195,7 +195,7 @@ configure_package_config_file("cmake/SixtyFPSConfig.cmake.in" "${CMAKE_CURRENT_B
write_basic_package_version_file(
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/SixtyFPS/SixtyFPSConfigVersion.cmake
VERSION 0.1.6
VERSION 0.2.0
COMPATIBILITY SameMinorVersion
)
@ -240,8 +240,8 @@ set(CPACK_PACKAGE_NAME "SixtyFPS-cpp")
set(CPACK_PACKAGE_VENDOR "SixtyFPS")
set(CPACK_VERBATIM_VARIABLES true)
set(CPACK_PACKAGE_VERSION_MAJOR 0)
set(CPACK_PACKAGE_VERSION_MINOR 1)
set(CPACK_PACKAGE_VERSION_PATCH 6)
set(CPACK_PACKAGE_VERSION_MINOR 2)
set(CPACK_PACKAGE_VERSION_PATCH 0)
set(CPACK_PACKAGE_HOMEPAGE_URL "https://sixtyfps.io")
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/../../LICENSE.md")
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/README.md")

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-cpp"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
build = "build.rs"
@ -32,10 +32,10 @@ testing = ["sixtyfps-rendering-backend-testing"]
default = ["backend-gl", "x11", "backend-qt"]
[dependencies]
sixtyfps-corelib = { version = "=0.1.6", path="../../sixtyfps_runtime/corelib", features = ["ffi"] }
sixtyfps-rendering-backend-default = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/default" }
sixtyfps-rendering-backend-testing = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/testing", optional = true }
sixtyfps-interpreter = { version = "=0.1.6", path="../../sixtyfps_runtime/interpreter", default-features = false, features = ["ffi"], optional = true }
sixtyfps-corelib = { version = "=0.2.0", path="../../sixtyfps_runtime/corelib", features = ["ffi"] }
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
sixtyfps-rendering-backend-testing = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/testing", optional = true }
sixtyfps-interpreter = { version = "=0.2.0", path="../../sixtyfps_runtime/interpreter", default-features = false, features = ["ffi"], optional = true }
[build-dependencies]
cbindgen = "0.20"

View file

@ -26,7 +26,7 @@ copyright = "2021, info@sixtyfps.io"
author = "info@sixtyfps.io"
# The full version, including alpha/beta/rc tags
version = "0.1.6"
version = "0.2.0"
cpp_index_common_prefix = ["sixtyfps::", "sixtyfps::interpreter::"]

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-node"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
build = "build.rs"
@ -21,9 +21,9 @@ name = "sixtyfps_node_native"
[dependencies]
once_cell = "1.5"
sixtyfps-compilerlib = { version = "=0.1.6", path="../../../sixtyfps_compiler" }
sixtyfps-interpreter = { version = "=0.1.6", path="../../../sixtyfps_runtime/interpreter", features = ["display-diagnostics"] }
sixtyfps-corelib = { version = "=0.1.6", path="../../../sixtyfps_runtime/corelib" }
sixtyfps-compilerlib = { version = "=0.2.0", path="../../../sixtyfps_compiler" }
sixtyfps-interpreter = { version = "=0.2.0", path="../../../sixtyfps_runtime/interpreter", features = ["display-diagnostics"] }
sixtyfps-corelib = { version = "=0.2.0", path="../../../sixtyfps_runtime/corelib" }
scoped-tls-hkt = "0.1"
neon = "0.8.0"
css-color-parser2 = "1.0.1"

View file

@ -1,6 +1,6 @@
{
"name": "sixtyfps",
"version": "0.1.6",
"version": "0.2.0",
"homepage": "https://github.com/sixtyfpsui/sixtyfps",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -26,11 +26,11 @@ std = ["sixtyfps-corelib/std"]
[dependencies]
once_cell = { version = "1.5", default-features = false, features = ["alloc"] }
sixtyfps-macros = { version = "=0.1.6", path = "sixtyfps-macros" }
sixtyfps-macros = { version = "=0.2.0", path = "sixtyfps-macros" }
const-field-offset = { version = "0.1.2", path = "../../helper_crates/const-field-offset" }
vtable = { version = "0.1.5", path = "../../helper_crates/vtable" }
sixtyfps-corelib = { version = "=0.1.6", path="../../sixtyfps_runtime/corelib", default-features = false }
sixtyfps-rendering-backend-default = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/default" }
sixtyfps-corelib = { version = "=0.2.0", path="../../sixtyfps_runtime/corelib", default-features = false }
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
pin-weak = { version = "1.1", default-features = false }
[package.metadata.docs.rs]

View file

@ -767,7 +767,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_6;
pub struct VersionCheck_0_2_0;
#[cfg(doctest)]
mod compile_fail_tests;

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-build"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -16,6 +16,6 @@ homepage = "https://sixtyfps.io"
path = "lib.rs"
[dependencies]
sixtyfps-compilerlib = { version = "=0.1.6", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
thiserror = "1"
spin_on = "0.1"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-macros"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -19,5 +19,5 @@ path = "lib.rs"
[dependencies]
quote = "1.0"
proc-macro2 = "1.0.17"
sixtyfps-compilerlib = { version = "=0.1.6", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
spin_on = "0.1"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-wasm-interpreter"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"

View file

@ -3,7 +3,7 @@
[package]
name = "src"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"

View file

@ -3,7 +3,7 @@
[package]
name = "_7gui"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -3,7 +3,7 @@
[package]
name = "gallery"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
build = "build.rs"

View file

@ -3,7 +3,7 @@
[package]
name = "imagefilter"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -3,7 +3,7 @@
[package]
name = "memory"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -1,6 +1,6 @@
{
"name": "memory",
"version": "0.1.6",
"version": "0.2.0",
"main": "main.js",
"dependencies": {
"sixtyfps": "../../api/sixtyfps-node"

View file

@ -3,7 +3,7 @@
[package]
name = "plotter"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -1,6 +1,6 @@
{
"name": "printerdemo",
"version": "0.1.6",
"version": "0.2.0",
"main": "main.js",
"dependencies": {
"sixtyfps": "../../../api/sixtyfps-node"

View file

@ -3,7 +3,7 @@
[package]
name = "printerdemo"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
build = "build.rs"

View file

@ -1,6 +1,6 @@
{
"name": "printerdemo",
"version": "0.1.6",
"version": "0.2.0",
"main": "main.js",
"dependencies": {
"sixtyfps": "../../../api/sixtyfps-node"

View file

@ -3,7 +3,7 @@
[package]
name = "printerdemo_old"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
build = "build.rs"

View file

@ -3,7 +3,7 @@
[package]
name = "slide_puzzle"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -1,6 +1,6 @@
{
"name": "todo",
"version": "0.1.6",
"version": "0.2.0",
"main": "main.js",
"dependencies": {
"sixtyfps": "../../../api/sixtyfps-node"

View file

@ -3,7 +3,7 @@
[package]
name = "todo"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
build = "build.rs"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-compilerlib"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
build = "build.rs"
@ -47,7 +47,7 @@ once_cell = "1"
url = "2.2.1"
dunce = "1.0.1"
linked_hash_set = "0.1.4"
sixtyfps-common = { version = "=0.1.6", path = "../sixtyfps_runtime/common" }
sixtyfps-common = { version = "=0.2.0", path = "../sixtyfps_runtime/common" }
# for processing and embedding the rendered image (texture)
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

View file

@ -3,7 +3,7 @@
[package]
name = "parser_test_macro"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -95,7 +95,7 @@ export AboutSixtyFPS := Rectangle {
preferred-width: 128px;
}
Text {
text: "Version 0.1.6\nhttps://sixtyfps.io/";
text: "Version 0.2.0\nhttps://sixtyfps.io/";
font-size: 10px;
horizontal-alignment: center;
}

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-common"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-corelib"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -36,7 +36,7 @@ libm = ["num-traits/libm", "euclid/libm"]
[dependencies]
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
vtable = { version="0.1.1", path = "../../helper_crates/vtable" }
sixtyfps-corelib-macros = { version = "=0.1.6", path = "../corelib_macros" }
sixtyfps-corelib-macros = { version = "=0.2.0", path = "../corelib_macros" }
lyon_path = { version = "0.17.3" , optional = true }
lyon_algorithms = { version = "0.17.1" , optional = true }
lyon_geom = { version = "0.17.0", optional = true }
@ -58,7 +58,7 @@ rgb = "0.8.27"
pin-project = "1"
atomic-polyfill = { version = "0.1.5" }
num-traits = { version = "0.2", default-features = false }
sixtyfps-common = { version = "=0.1.6", path = "../common" }
sixtyfps-common = { version = "=0.2.0", path = "../common" }
defmt = { version = "0.3.0", optional = true }

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-corelib-macros"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-interpreter"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -26,10 +26,10 @@ backend-qt = ["sixtyfps-rendering-backend-default/sixtyfps-rendering-backend-qt"
default = ["backend-gl", "x11", "backend-qt"]
[dependencies]
sixtyfps-corelib = { version = "=0.1.6", path = "../corelib", features = ["rtti"] }
sixtyfps-rendering-backend-default = { version = "=0.1.6", path = "../../sixtyfps_runtime/rendering_backends/default" }
sixtyfps-corelib = { version = "=0.2.0", path = "../corelib", features = ["rtti"] }
sixtyfps-rendering-backend-default = { version = "=0.2.0", path = "../../sixtyfps_runtime/rendering_backends/default" }
vtable = { version = "0.1.1", path="../../helper_crates/vtable" }
sixtyfps-compilerlib = { version = "=0.1.6", path = "../../sixtyfps_compiler" }
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../sixtyfps_compiler" }
lyon_path = { version = "0.17.3" }
derive_more = "0.99.5"
generativity = "1"
@ -41,7 +41,7 @@ version = "0.1"
optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies]
sixtyfps-rendering-backend-gl = { version = "=0.1.6", path = "../../sixtyfps_runtime/rendering_backends/gl" }
sixtyfps-rendering-backend-gl = { version = "=0.2.0", path = "../../sixtyfps_runtime/rendering_backends/gl" }
[dev-dependencies]
spin_on = "0.1"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-rendering-backend-default"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -19,7 +19,7 @@ x11 = ["sixtyfps-rendering-backend-gl/x11"]
wayland = ["sixtyfps-rendering-backend-gl/wayland"]
[dependencies]
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib", default-features = false }
sixtyfps-rendering-backend-gl = { version = "=0.1.6", path = "../gl", optional = true }
sixtyfps-rendering-backend-qt = { version = "=0.1.6", path = "../qt", optional = true }
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib", default-features = false }
sixtyfps-rendering-backend-gl = { version = "=0.2.0", path = "../gl", optional = true }
sixtyfps-rendering-backend-qt = { version = "=0.2.0", path = "../qt", optional = true }
cfg-if = "1"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-rendering-backend-gl"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -23,8 +23,8 @@ svg = ["resvg", "usvg", "tiny-skia"]
default = ["svg"]
[dependencies]
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib" }
sixtyfps-common = { version = "=0.1.6", path = "../../common" }
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib" }
sixtyfps-common = { version = "=0.2.0", path = "../../common" }
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
image = { version = "0.23.14", default-features = false, features = [ "png", "jpeg" ] }
rgb = "0.8.27"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-rendering-backend-mcu"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -27,8 +27,8 @@ snapshot_renderer = []
std = ["sixtyfps-corelib/std"]
[dependencies]
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib", default-features = false }
sixtyfps-common = { version = "=0.1.6", path = "../../common", default-features = false }
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib", default-features = false }
sixtyfps-common = { version = "=0.2.0", path = "../../common", default-features = false }
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
rgb = "0.8.27"
vtable = { version = "0.1", path = "../../../helper_crates/vtable" }

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-rendering-backend-qt"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -23,9 +23,9 @@ path = "lib.rs"
cpp = "0.5.5"
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.1.6", path = "../../corelib_macros" }
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib" }
sixtyfps-common = { version = "=0.1.6", path = "../../common" }
sixtyfps-corelib-macros = { version = "=0.2.0", path = "../../corelib_macros" }
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib" }
sixtyfps-common = { version = "=0.2.0", path = "../../common" }
euclid = "0.22.1"
pin-weak = "1"
once_cell = "1"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-rendering-backend-testing"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -16,5 +16,5 @@ publish = false
path = "lib.rs"
[dependencies]
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib" }
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib" }
image = { version = "0.23.14", default-features = false, features = ["png"] }

View file

@ -3,7 +3,7 @@
[package]
name = "doctests"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -3,7 +3,7 @@
[package]
name = "test-driver-cpp"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -3,7 +3,7 @@
[package]
name = "test_driver_lib"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -3,7 +3,7 @@
[package]
name = "test-driver-interpreter"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -3,7 +3,7 @@
[package]
name = "test-driver-nodejs"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
publish = false

View file

@ -3,7 +3,7 @@
[package]
name = "test-driver-rust"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-compiler"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -17,7 +17,7 @@ name = "sixtyfps-compiler"
path = "main.rs"
[dependencies]
sixtyfps-compilerlib = { version = "=0.1.6", path = "../../sixtyfps_compiler", features = ["display-diagnostics", "cpp", "rust"]}
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../sixtyfps_compiler", features = ["display-diagnostics", "cpp", "rust"]}
clap = { version = "3.0.5", features=["derive", "wrap_help"] }
spin_on = "0.1"
proc-macro2 = "1.0.11"

View file

@ -3,7 +3,7 @@
[package]
name = "figma_import"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "GPL-3.0-only"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-fmt"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-lsp"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -29,10 +29,10 @@ wayland = ["sixtyfps-interpreter/wayland"]
default = ["sixtyfps-backend-qt", "sixtyfps-backend-gl", "x11"]
[dependencies]
sixtyfps-compilerlib = { version = "=0.1.6", path = "../../sixtyfps_compiler"}
sixtyfps-interpreter = { version = "=0.1.6", path = "../../sixtyfps_runtime/interpreter", default-features = false }
sixtyfps-corelib = { version = "=0.1.6", path = "../../sixtyfps_runtime/corelib"}
sixtyfps-rendering-backend-default = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/default" }
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../sixtyfps_compiler"}
sixtyfps-interpreter = { version = "=0.2.0", path = "../../sixtyfps_runtime/interpreter", default-features = false }
sixtyfps-corelib = { version = "=0.2.0", path = "../../sixtyfps_runtime/corelib"}
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
lsp-types = "0.91.0"
lsp-server = "0.5"
crossbeam-channel = "0.5" # must match the version used by lsp-server

View file

@ -1,6 +1,6 @@
{
"name": "sixtyfps-online-editor",
"version": "0.1.6",
"version": "0.2.0",
"description": "",
"main": "index.js",
"scripts": {

View file

@ -3,7 +3,7 @@
[package]
name = "syntax_updater"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"

View file

@ -3,7 +3,7 @@
[package]
name = "sixtyfps-viewer"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
@ -21,9 +21,9 @@ wayland = ["sixtyfps-interpreter/wayland"]
default = ["sixtyfps-backend-qt", "sixtyfps-backend-gl", "x11"]
[dependencies]
sixtyfps-corelib = { version = "=0.1.6", path="../../sixtyfps_runtime/corelib" }
sixtyfps-rendering-backend-default = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/default" }
sixtyfps-interpreter = { version = "=0.1.6", path = "../../sixtyfps_runtime/interpreter", default-features = false, features = ["display-diagnostics"] }
sixtyfps-corelib = { version = "=0.2.0", path="../../sixtyfps_runtime/corelib" }
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
sixtyfps-interpreter = { version = "=0.2.0", path = "../../sixtyfps_runtime/interpreter", default-features = false, features = ["display-diagnostics"] }
vtable = { version = "0.1", path="../../helper_crates/vtable" }
clap = { version = "3.0.5", features=["derive", "wrap_help"] }
codemap-diagnostic = "0.1.1"

View file

@ -2,7 +2,7 @@
"name": "sixtyfps-vscode",
"displayName": "SixtyFPS-vscode",
"description": "SixtyFPS Language extension",
"version": "0.1.6",
"version": "0.2.0",
"publisher": "SixtyFPS",
"icon": "extension-logo.png",
"license": "GPL-3.0",

View file

@ -3,7 +3,7 @@
[package]
name = "xtask"
version = "0.1.6"
version = "0.2.0"
authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018"
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"