Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed Aug 11, 2023
1 parent 5a67793 commit 9591c1b
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ opt-level = 3
opt-level = 3

[workspace.package]
version = "0.5.0"
version = "0.7.0"
categories = ["conda"]
homepage = "https://github.com/mamba-org/rattler"
repository = "https://github.com/mamba-org/rattler"
Expand Down
12 changes: 6 additions & 6 deletions crates/rattler-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ futures = "0.3.28"
indicatif = "0.17.5"
itertools = "0.11.0"
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.7.0", path = "../rattler", default-features = false }
rattler_networking = { version = "0.7.0", path = "../rattler_networking", default-features = false }
rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types" }
rattler_repodata_gateway = { version = "0.7.0", path = "../rattler_repodata_gateway", features = ["sparse"], default-features = false }
rattler_solve = { version = "0.7.0", path = "../rattler_solve", features = ["libsolv_rs", "libsolv_c"] }
rattler_virtual_packages = { version = "0.7.0", path = "../rattler_virtual_packages" }
reqwest = { version = "0.11.18", default-features = false }
tokio = { version = "1.29.1", features = ["rt-multi-thread", "macros"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
Expand Down
8 changes: 4 additions & 4 deletions crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ memmap2 = "0.7.1"
nom = "7.1.3"
once_cell = "1.18.0"
pin-project-lite = "0.2.10"
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.7.0", path = "../rattler_conda_types" }
rattler_digest = { version = "0.7.0", path = "../rattler_digest" }
rattler_networking = { version = "0.7.0", path = "../rattler_networking", default-features = false }
rattler_package_streaming = { version = "0.7.0", path = "../rattler_package_streaming", features = ["reqwest", "tokio"], default-features = false }
regex = "1.9.1"
reqwest = { version = "0.11.18", default-features = false, features = ["stream", "json", "gzip"] }
serde = { version = "1.0.171", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/rattler_conda_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ strum = { version = "0.25.0", features = ["derive"] }
thiserror = "1.0.43"
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.7.0", path = "../rattler_digest", features = ["serde"] }
rattler_macros = { version = "0.7.0", path = "../rattler_macros" }
glob = "0.3.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_libsolv_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0", path = "../rattler_conda_types" }
tracing = "0.1.37"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/rattler_package_streaming/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ bzip2 = { version = "0.4" }
chrono = "0.4.26"
futures-util = { version = "0.3.28", optional = true }
itertools = "0.11.0"
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.7.0", path = "../rattler_conda_types" }
rattler_digest = { version = "0.7.0", path = "../rattler_digest" }
serde_json = "1.0.102"
tar = { version = "0.4.38" }
thiserror = "1.0.43"
Expand All @@ -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.7.0", path = "../rattler_networking", default-features = false }

[features]
default = ['native-tls']
Expand Down
6 changes: 3 additions & 3 deletions crates/rattler_repodata_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ serde = { version = "1.0.171", features = ["derive"] }
serde_json = { version = "1.0.102" }
pin-project-lite = "0.2.10"
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.7.0", path = "../rattler_digest", features = ["tokio", "serde"] }
rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types", optional = true }
fxhash = { version = "0.2.1", optional = true }
memmap2 = { version = "0.7.1", optional = true }
ouroboros = { version = "0.17.0", optional = true }
Expand All @@ -40,7 +40,7 @@ superslice = { version = "1.0.0", optional = true }
itertools = { version = "0.11.0", 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.7.0", path = "../rattler_networking", default-features = false }

[target.'cfg(unix)'.dependencies]
libc = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_shell/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme.workspace = true
enum_dispatch = "0.3.12"
indexmap = "2.0.0"
itertools = "0.11.0"
rattler_conda_types = { version = "0.5.0", path = "../rattler_conda_types" }
rattler_conda_types = { version = "0.7.0", path = "../rattler_conda_types" }
serde_json = { version = "1.0.102", features = ["preserve_order"] }
shlex = "1.1.0"
sysinfo = { version = "0.29.4", optional = true }
Expand Down
10 changes: 5 additions & 5 deletions crates/rattler_solve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0", path = "../rattler_conda_types" }
rattler_digest = { version = "0.7.0", path = "../rattler_digest" }
libc = { version = "0.2", optional = true }
anyhow = "1.0.71"
thiserror = "1.0.43"
Expand All @@ -21,11 +21,11 @@ serde = { version = "1.0.171", 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.7.0", path = "../rattler_libsolv_c", optional = true }
rattler_libsolv_rs = { version = "0.7.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.7.0", path = "../rattler_repodata_gateway", default-features = false, features = ["sparse"] }
insta = { version = "1.30.0", features = ["yaml"] }
rstest = "0.18.1"
serde_json = "1.0.102"
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_virtual_packages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0", path = "../rattler_conda_types" }
thiserror = "1.0.43"
tracing = "0.1.37"
serde = { version = "1.0.171", features = ["derive"] }
Expand Down

0 comments on commit 9591c1b

Please sign in to comment.