diff --git a/Cargo.lock b/Cargo.lock index 4bbbe5ae..0a3653d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2519,7 +2519,7 @@ dependencies = [ [[package]] name = "uvm-install2" -version = "0.7.0" +version = "0.8.0" dependencies = [ "console 0.9.2", "dirs-2", @@ -2642,7 +2642,7 @@ dependencies = [ [[package]] name = "uvm_core" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "cfg-if 1.0.0", @@ -2680,7 +2680,7 @@ dependencies = [ [[package]] name = "uvm_install_core" -version = "0.7.0" +version = "0.8.0" dependencies = [ "cfg-if 1.0.0", "derive_deref", @@ -2699,7 +2699,7 @@ dependencies = [ [[package]] name = "uvm_install_graph" -version = "0.6.0" +version = "0.7.0" dependencies = [ "cfg-if 1.0.0", "daggy", diff --git a/install/uvm-install/Cargo.toml b/install/uvm-install/Cargo.toml index 32ecd883..2118315d 100644 --- a/install/uvm-install/Cargo.toml +++ b/install/uvm-install/Cargo.toml @@ -11,6 +11,6 @@ indicatif = "0.15.0" log = "0.4.11" console = "0.9.1" uvm_cli = { path = "../../uvm_cli" } -uvm_core = { path = "../../uvm_core", version = "0.11.0" } -uvm_install_core = {path = "../uvm_install_core", version = "0.7.0" } +uvm_core = { path = "../../uvm_core", version = "0.12.0" } +uvm_install_core = {path = "../uvm_install_core", version = "0.8.0" } error-chain = "0.12.4" diff --git a/install/uvm-install2/Cargo.toml b/install/uvm-install2/Cargo.toml index 6c22b5ca..260cdf05 100644 --- a/install/uvm-install2/Cargo.toml +++ b/install/uvm-install2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uvm-install2" -version = "0.7.0" +version = "0.8.0" authors = ["Manfred Endres "] description = "Install specified unity version." repository = "https://github.com/Larusso/unity-version-manager" @@ -19,10 +19,10 @@ log = "0.4.11" serde = "1.0" serde_derive = "1.0" structopt = "0.3" -uvm_core = { path = "../../uvm_core", version = "0.11.0" } +uvm_core = { path = "../../uvm_core", version = "0.12.0" } uvm_cli = { path = "../../uvm_cli", version = "0.4.0" } -uvm_install_core = {path = "../uvm_install_core", version = "0.7.0" } -uvm_install_graph = { path = "../../uvm_install_graph", version = "0.6.0" } +uvm_install_core = {path = "../uvm_install_core", version = "0.8.0" } +uvm_install_graph = { path = "../../uvm_install_graph", version = "0.7.0" } [dev-dependencies] tempfile = "3.1.0" diff --git a/install/uvm-uninstall/Cargo.toml b/install/uvm-uninstall/Cargo.toml index a73b0fb8..5008a262 100644 --- a/install/uvm-uninstall/Cargo.toml +++ b/install/uvm-uninstall/Cargo.toml @@ -12,4 +12,4 @@ serde_derive = "1.0" structopt = "0.3" uvm_cli = { path = "../../uvm_cli" } uvm_core = { path = "../../uvm_core" } -uvm_install_core = {path = "../uvm_install_core", version = "0.7.0" } +uvm_install_core = {path = "../uvm_install_core", version = "0.8.0" } diff --git a/install/uvm_install_core/Cargo.toml b/install/uvm_install_core/Cargo.toml index 708ec55b..ef37066a 100644 --- a/install/uvm_install_core/Cargo.toml +++ b/install/uvm_install_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uvm_install_core" -version = "0.7.0" +version = "0.8.0" authors = ["Manfred Endres "] description = "Base crate with installer functions to install Unity3D and its support modules" repository = "https://github.com/Larusso/unity-version-manager" @@ -12,7 +12,7 @@ edition = "2018" [dependencies] cfg-if = "1.0.0" -uvm_core = { path = "../../uvm_core", version = "0.11.0" } +uvm_core = { path = "../../uvm_core", version = "0.12.0" } uvm_move_dir = {path = "../../uvm_move_dir", version = "0.1.0" } log = "0.4.11" reqwest = "0.9.22" diff --git a/uvm_core/Cargo.toml b/uvm_core/Cargo.toml index 4aa51822..ac65f304 100644 --- a/uvm_core/Cargo.toml +++ b/uvm_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uvm_core" -version = "0.11.0" +version = "0.12.0" authors = ["Manfred Endres "] description = "The core functionality for the unity version manager commandline client." repository = "https://github.com/Larusso/unity-version-manager" diff --git a/uvm_install_graph/Cargo.toml b/uvm_install_graph/Cargo.toml index 59fef756..c66dfffa 100644 --- a/uvm_install_graph/Cargo.toml +++ b/uvm_install_graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uvm_install_graph" -version = "0.6.0" +version = "0.7.0" authors = ["Manfred Endres "] description = "A graph view of a unity version manifest" repository = "https://github.com/Larusso/unity-version-manager" @@ -19,7 +19,7 @@ maintenance = { status = "experimental" } daggy = "0.6.0" fixedbitset = "0.1.8" itertools = "0.9.0" -uvm_core = { path = "../uvm_core", version = "0.11.0" } +uvm_core = { path = "../uvm_core", version = "0.12.0" } [dev-dependencies] cfg-if = "1.0.0" stringreader = "0.1.1"