From 3728373ac0e0d584d76c72a3c05255ace26c9446 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Fri, 7 Jul 2023 16:26:32 +0200 Subject: [PATCH] chore: Release --- Cargo.toml | 2 +- crates/rattler-bin/Cargo.toml | 12 ++++++------ crates/rattler/Cargo.toml | 8 ++++---- crates/rattler_conda_types/Cargo.toml | 4 ++-- crates/rattler_libsolv_rs/Cargo.toml | 2 +- crates/rattler_package_streaming/Cargo.toml | 6 +++--- crates/rattler_repodata_gateway/Cargo.toml | 6 +++--- crates/rattler_shell/Cargo.toml | 2 +- crates/rattler_solve/Cargo.toml | 10 +++++----- crates/rattler_virtual_packages/Cargo.toml | 2 +- 10 files changed, 27 insertions(+), 27 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 83028d24d..60b11d4db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ opt-level = 3 opt-level = 3 [workspace.package] -version = "0.5.0" +version = "0.6.0" categories = ["conda"] homepage = "https://github.com/mamba-org/rattler" repository = "https://github.com/mamba-org/rattler" diff --git a/crates/rattler-bin/Cargo.toml b/crates/rattler-bin/Cargo.toml index 279a852a2..2605f612a 100644 --- a/crates/rattler-bin/Cargo.toml +++ b/crates/rattler-bin/Cargo.toml @@ -29,12 +29,12 @@ futures = "0.3.28" indicatif = "0.17.5" itertools = "0.10.5" once_cell = "1.18.0" -rattler = { version = "0.5.0", path = "../rattler", default-features = false } -rattler_networking = { version = "0.5.0", path = "../rattler_networking", default-features = false } -rattler_conda_types = { version = "0.5.0", path = "../rattler_conda_types" } -rattler_repodata_gateway = { version = "0.5.0", path = "../rattler_repodata_gateway", features = ["sparse"], default-features = false } -rattler_solve = { version = "0.5.0", path = "../rattler_solve", features = ["libsolv_rs", "libsolv_c"] } -rattler_virtual_packages = { version = "0.5.0", path = "../rattler_virtual_packages" } +rattler = { version = "0.6.0", path = "../rattler", default-features = false } +rattler_networking = { version = "0.6.0", path = "../rattler_networking", default-features = false } +rattler_conda_types = { version = "0.6.0", path = "../rattler_conda_types" } +rattler_repodata_gateway = { version = "0.6.0", path = "../rattler_repodata_gateway", features = ["sparse"], default-features = false } +rattler_solve = { version = "0.6.0", path = "../rattler_solve", features = ["libsolv_rs", "libsolv_c"] } +rattler_virtual_packages = { version = "0.6.0", path = "../rattler_virtual_packages" } reqwest = { version = "0.11.18", default-features = false } tokio = { version = "1.28.2", features = ["rt-multi-thread", "macros"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } diff --git a/crates/rattler/Cargo.toml b/crates/rattler/Cargo.toml index 78d4fd0e9..461ffa452 100644 --- a/crates/rattler/Cargo.toml +++ b/crates/rattler/Cargo.toml @@ -32,10 +32,10 @@ memmap2 = "0.6.2" nom = "7.1.3" once_cell = "1.18.0" pin-project-lite = "0.2.9" -rattler_conda_types = { version = "0.5.0", path = "../rattler_conda_types" } -rattler_digest = { version = "0.5.0", path = "../rattler_digest" } -rattler_networking = { version = "0.5.0", path = "../rattler_networking", default-features = false } -rattler_package_streaming = { version = "0.5.0", path = "../rattler_package_streaming", features = ["reqwest", "tokio"], default-features = false } +rattler_conda_types = { version = "0.6.0", path = "../rattler_conda_types" } +rattler_digest = { version = "0.6.0", path = "../rattler_digest" } +rattler_networking = { version = "0.6.0", path = "../rattler_networking", default-features = false } +rattler_package_streaming = { version = "0.6.0", path = "../rattler_package_streaming", features = ["reqwest", "tokio"], default-features = false } regex = "1.8.4" reqwest = { version = "0.11.18", default-features = false, features = ["stream", "json", "gzip"] } serde = { version = "1.0.163", features = ["derive"] } diff --git a/crates/rattler_conda_types/Cargo.toml b/crates/rattler_conda_types/Cargo.toml index 35e9f1281..75b03c68f 100644 --- a/crates/rattler_conda_types/Cargo.toml +++ b/crates/rattler_conda_types/Cargo.toml @@ -29,8 +29,8 @@ strum = { version = "0.24.1", features = ["derive"] } thiserror = "1.0.40" tracing = "0.1.37" url = { version = "2.4.0", features = ["serde"] } -rattler_digest = { version = "0.5.0", path = "../rattler_digest", features = ["serde"] } -rattler_macros = { version = "0.5.0", path = "../rattler_macros" } +rattler_digest = { version = "0.6.0", path = "../rattler_digest", features = ["serde"] } +rattler_macros = { version = "0.6.0", path = "../rattler_macros" } glob = "0.3.1" [dev-dependencies] diff --git a/crates/rattler_libsolv_rs/Cargo.toml b/crates/rattler_libsolv_rs/Cargo.toml index 3ad38de02..4c2b2d88f 100644 --- a/crates/rattler_libsolv_rs/Cargo.toml +++ b/crates/rattler_libsolv_rs/Cargo.toml @@ -13,7 +13,7 @@ readme.workspace = true [dependencies] itertools = "0.11.0" petgraph = "0.6.3" -rattler_conda_types = { version = "0.5.0", path = "../rattler_conda_types" } +rattler_conda_types = { version = "0.6.0", path = "../rattler_conda_types" } tracing = "0.1.37" [dev-dependencies] diff --git a/crates/rattler_package_streaming/Cargo.toml b/crates/rattler_package_streaming/Cargo.toml index dcc5b2bc2..4cb839d19 100644 --- a/crates/rattler_package_streaming/Cargo.toml +++ b/crates/rattler_package_streaming/Cargo.toml @@ -15,8 +15,8 @@ bzip2 = { version = "0.4" } chrono = "0.4.26" futures-util = { version = "0.3.28", optional = true } itertools = "0.10.5" -rattler_conda_types = { version = "0.5.0", path = "../rattler_conda_types" } -rattler_digest = { version = "0.5.0", path = "../rattler_digest" } +rattler_conda_types = { version = "0.6.0", path = "../rattler_conda_types" } +rattler_digest = { version = "0.6.0", path = "../rattler_digest" } serde_json = "1.0.96" tar = { version = "0.4.38" } thiserror = "1.0.40" @@ -26,7 +26,7 @@ reqwest = { version = "0.11.18", optional = true, default-features = false } url = "2.4.0" zip = { version = "0.6.6" } zstd = "0.12.3" -rattler_networking = { version = "0.5.0", path = "../rattler_networking", default-features = false } +rattler_networking = { version = "0.6.0", path = "../rattler_networking", default-features = false } [features] default = ['native-tls'] diff --git a/crates/rattler_repodata_gateway/Cargo.toml b/crates/rattler_repodata_gateway/Cargo.toml index 834b09808..9f396226d 100644 --- a/crates/rattler_repodata_gateway/Cargo.toml +++ b/crates/rattler_repodata_gateway/Cargo.toml @@ -30,8 +30,8 @@ serde = { version = "1.0.163", features = ["derive"] } serde_json = { version = "1.0.96" } pin-project-lite = "0.2.9" md-5 = "0.10.5" -rattler_digest = { version = "0.5.0", path = "../rattler_digest", features = ["tokio", "serde"] } -rattler_conda_types = { version = "0.5.0", path = "../rattler_conda_types", optional = true } +rattler_digest = { version = "0.6.0", path = "../rattler_digest", features = ["tokio", "serde"] } +rattler_conda_types = { version = "0.6.0", path = "../rattler_conda_types", optional = true } fxhash = { version = "0.2.1", optional = true } memmap2 = { version = "0.6.2", optional = true } ouroboros = { version = "0.15.6", optional = true } @@ -40,7 +40,7 @@ superslice = { version = "1.0.0", optional = true } itertools = { version = "0.10.5", optional = true } json-patch = "1.0.0" hex = { version = "0.4.3", features = ["serde"] } -rattler_networking = { version = "0.5.0", path = "../rattler_networking", default-features = false } +rattler_networking = { version = "0.6.0", path = "../rattler_networking", default-features = false } [target.'cfg(unix)'.dependencies] libc = "0.2" diff --git a/crates/rattler_shell/Cargo.toml b/crates/rattler_shell/Cargo.toml index 2e2566a76..a1226cc03 100644 --- a/crates/rattler_shell/Cargo.toml +++ b/crates/rattler_shell/Cargo.toml @@ -14,7 +14,7 @@ readme.workspace = true enum_dispatch = "0.3.11" indexmap = "1.9.3" itertools = "0.10.5" -rattler_conda_types = { version = "0.5.0", path = "../rattler_conda_types" } +rattler_conda_types = { version = "0.6.0", path = "../rattler_conda_types" } serde_json = { version = "1.0.96", features = ["preserve_order"] } shlex = "1.1.0" sysinfo = { version = "0.29.2", optional = true } diff --git a/crates/rattler_solve/Cargo.toml b/crates/rattler_solve/Cargo.toml index 69ae44f2c..252f63afb 100644 --- a/crates/rattler_solve/Cargo.toml +++ b/crates/rattler_solve/Cargo.toml @@ -11,8 +11,8 @@ license.workspace = true readme.workspace = true [dependencies] -rattler_conda_types = { version = "0.5.0", path = "../rattler_conda_types" } -rattler_digest = { version = "0.5.0", path = "../rattler_digest" } +rattler_conda_types = { version = "0.6.0", path = "../rattler_conda_types" } +rattler_digest = { version = "0.6.0", path = "../rattler_digest" } libc = { version = "0.2", optional = true } anyhow = "1.0.71" thiserror = "1.0.40" @@ -21,11 +21,11 @@ serde = { version = "1.0.163", features = ["derive"] } url = "2.4.0" hex = "0.4.3" tempfile = "3.6.0" -rattler_libsolv_c = { version = "0.5.0", path = "../rattler_libsolv_c", optional = true } -rattler_libsolv_rs = { version = "0.5.0", path = "../rattler_libsolv_rs", optional = true } +rattler_libsolv_c = { version = "0.6.0", path = "../rattler_libsolv_c", optional = true } +rattler_libsolv_rs = { version = "0.6.0", path = "../rattler_libsolv_rs", optional = true } [dev-dependencies] -rattler_repodata_gateway = { version = "0.5.0", path = "../rattler_repodata_gateway", default-features = false, features = ["sparse"] } +rattler_repodata_gateway = { version = "0.6.0", path = "../rattler_repodata_gateway", default-features = false, features = ["sparse"] } insta = { version = "1.29.0", features = ["yaml"] } rstest = "0.17.0" serde_json = "1.0.96" diff --git a/crates/rattler_virtual_packages/Cargo.toml b/crates/rattler_virtual_packages/Cargo.toml index e02997dfa..144bc3b60 100644 --- a/crates/rattler_virtual_packages/Cargo.toml +++ b/crates/rattler_virtual_packages/Cargo.toml @@ -15,7 +15,7 @@ cfg-if = "1.0.0" libloading = "0.8.0" nom = "7.1.3" once_cell = "1.18.0" -rattler_conda_types = { version = "0.5.0", path = "../rattler_conda_types" } +rattler_conda_types = { version = "0.6.0", path = "../rattler_conda_types" } thiserror = "1.0.40" tracing = "0.1.37" serde = { version = "1.0.163", features = ["derive"] }