From 8fcc6a8af27129b1f6b6222ba6b99410a21465c7 Mon Sep 17 00:00:00 2001 From: Aevyrie Roessler Date: Wed, 26 Jan 2022 12:20:10 -0800 Subject: [PATCH 1/6] Move to cargo deps --- Cargo.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1b5ace8..dad31e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,9 +18,7 @@ authors = [ [dependencies] bitflags = "1.3" -bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", default-features = false, features = [ - "render", -] } +bevy = { version = "0.6", default-features = false, features = ["render"] } [dependencies.naga] features = ["glsl-in", "spv-out", "wgsl-out"] @@ -30,7 +28,7 @@ version = "0.8.0" lazy_static = "1.4.0" rand = "0.8.4" ringbuffer = "0.8.2" -bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", default-features = false, features = [ +bevy = { version = "0.6", default-features = false, features = [ "bevy_winit", "x11", ] } From bbe1f429a851b89f3a68e4dbdf1763d50256fd87 Mon Sep 17 00:00:00 2001 From: Aevyrie Roessler Date: Wed, 26 Jan 2022 12:20:46 -0800 Subject: [PATCH 2/6] bump version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dad31e5..56485fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "bevy_polyline" -version = "0.1.1" +version = "0.1.2" description = "Polyline Rendering for Bevy" license = "MIT" repository = "https://github.com/ForesightMiningSoftwareCorporation/bevy_polyline" From 858cc7cda01373c8c3ae4eef642860dae9b46484 Mon Sep 17 00:00:00 2001 From: Aevyrie Roessler Date: Wed, 26 Jan 2022 12:40:27 -0800 Subject: [PATCH 3/6] Bump version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7d1b4dc..e8ee5ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "bevy_polyline" -version = "0.1.2" +version = "0.1.3" description = "Polyline Rendering for Bevy" license = "MIT OR Apache-2.0" repository = "https://github.com/ForesightMiningSoftwareCorporation/bevy_polyline" From 725441ba615d869d0964f5f68762945f89f5c2a5 Mon Sep 17 00:00:00 2001 From: Aevyrie Roessler Date: Wed, 26 Jan 2022 15:31:23 -0800 Subject: [PATCH 4/6] Bump version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e8ee5ec..2a6e9ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "bevy_polyline" -version = "0.1.3" +version = "0.1.4" description = "Polyline Rendering for Bevy" license = "MIT OR Apache-2.0" repository = "https://github.com/ForesightMiningSoftwareCorporation/bevy_polyline" From d2da4a655645ba3cbce1f605f430969466ad2ad5 Mon Sep 17 00:00:00 2001 From: Aevyrie Roessler Date: Wed, 20 Apr 2022 12:58:57 -0700 Subject: [PATCH 5/6] bump version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f35b431..e6a9472 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "bevy_polyline" -version = "0.1.4" +version = "0.2.0" description = "Polyline Rendering for Bevy" license = "MIT OR Apache-2.0" repository = "https://github.com/ForesightMiningSoftwareCorporation/bevy_polyline" From 0136a66eea6789c9e0a724fa6755db5e8267f71f Mon Sep 17 00:00:00 2001 From: Aevyrie Date: Mon, 8 Aug 2022 15:31:08 -0700 Subject: [PATCH 6/6] update deps --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a7f2b66..684d406 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ authors = [ [dependencies] bitflags = "1.3" -bevy = { version = "0.8", default-features = false, features = [ +bevy = { git = "https://github.com/bevyengine/bevy", rev = "0149c4145f0f398e9fba85c2584d0481a260f57c", default-features = false, features = [ "render", "bevy_asset", ] } @@ -31,7 +31,7 @@ version = "0.9.0" lazy_static = "1.4.0" rand = "0.8.4" ringbuffer = "0.8.2" -bevy = { version = "0.8", default-features = false, features = [ +bevy = { git = "https://github.com/bevyengine/bevy", rev = "0149c4145f0f398e9fba85c2584d0481a260f57c", default-features = false, features = [ "bevy_winit", "x11", ] }