Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed Mar 24, 2023
1 parent 91045af commit 599d5a8
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 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.1.0"
version = "0.2.0"
categories = ["conda"]
homepage = "https://github.com/mamba-org/rattler"
repository = "https://github.com/mamba-org/rattler"
Expand Down
10 changes: 5 additions & 5 deletions crates/rattler-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ futures = "0.3.17"
indicatif = "0.17.3"
itertools = "0.10.3"
once_cell = "1.17.1"
rattler = { version = "0.1.0", path = "../rattler" }
rattler_conda_types = { version = "0.1.0", path = "../rattler_conda_types" }
rattler_repodata_gateway = { version = "0.1.0", path = "../rattler_repodata_gateway", features = ["sparse"] }
rattler_solve = { version = "0.1.0", path = "../rattler_solve" }
rattler_virtual_packages = { version = "0.1.0", path = "../rattler_virtual_packages" }
rattler = { version = "0.2.0", path = "../rattler" }
rattler_conda_types = { version = "0.2.0", path = "../rattler_conda_types" }
rattler_repodata_gateway = { version = "0.2.0", path = "../rattler_repodata_gateway", features = ["sparse"] }
rattler_solve = { version = "0.2.0", path = "../rattler_solve" }
rattler_virtual_packages = { version = "0.2.0", path = "../rattler_virtual_packages" }
reqwest = "0.11.14"
tokio = { version = "1.21.1", features = ["rt-multi-thread", "macros"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ memmap2 = "0.5.8"
nom = "7.1.0"
once_cell = "1.8.0"
pin-project-lite = "0.2.9"
rattler_conda_types = { version = "0.1.0", path = "../rattler_conda_types" }
rattler_digest = { version = "0.1.0", path = "../rattler_digest" }
rattler_package_streaming = { version = "0.1.0", path = "../rattler_package_streaming", features = ["reqwest", "tokio"] }
rattler_conda_types = { version = "0.2.0", path = "../rattler_conda_types" }
rattler_digest = { version = "0.2.0", path = "../rattler_digest" }
rattler_package_streaming = { version = "0.2.0", path = "../rattler_package_streaming", features = ["reqwest", "tokio"] }
regex = "1.5.4"
reqwest = { version = "0.11.6", default-features = false, features = ["stream", "json", "gzip"] }
serde = { version = "1.0.130", 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.24.1", features = ["derive"] }
thiserror = "1.0.37"
tracing = "0.1.29"
url = { version = "2.2.2", features = ["serde"] }
rattler_digest = { version = "0.1.0", path = "../rattler_digest", features = ["serde"] }
rattler_macros = { version = "0.1.0", path = "../rattler_macros" }
rattler_digest = { version = "0.2.0", path = "../rattler_digest", features = ["serde"] }
rattler_macros = { version = "0.2.0", path = "../rattler_macros" }
glob = "0.3.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_package_streaming/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ reqwest = { version = "0.11.13", optional = true }
tokio = { version = "1", optional = true }
tokio-util = { version = "0.7", optional = true }
futures-util = { version = "0.3.25", optional = true }
rattler_conda_types = { version = "0.1.0", path = "../rattler_conda_types" }
rattler_conda_types = { version = "0.2.0", path = "../rattler_conda_types" }
itertools = "0.10.5"
serde_json = "1.0.94"

Expand Down
4 changes: 2 additions & 2 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.130", features = ["derive"] }
serde_json = { version = "1.0.68" }
pin-project-lite = "0.2.9"
md-5 = "0.10.5"
rattler_digest = { version = "0.1.0", path = "../rattler_digest", features = ["tokio"] }
rattler_conda_types = { version = "0.1.0", path = "../rattler_conda_types", optional = true }
rattler_digest = { version = "0.2.0", path = "../rattler_digest", features = ["tokio"] }
rattler_conda_types = { version = "0.2.0", path = "../rattler_conda_types", optional = true }
fxhash = { version = "0.2.1", optional = true }
memmap2 = { version = "0.5.8", optional = true }
ouroboros = { version = "0.15.6", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_solve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license.workspace = true
readme.workspace = true

[dependencies]
rattler_conda_types = { version = "0.1.0", path = "../rattler_conda_types" }
rattler_conda_types = { version = "0.2.0", path = "../rattler_conda_types" }
libc = "0.2"
libz-sys = { version = "1.1.0", default-features = false, features = ["static"] }
anyhow = "1.0.69"
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.7.4"
nom = "7.1.3"
once_cell = "1.17.0"
rattler_conda_types = { version = "0.1.0", path = "../rattler_conda_types" }
rattler_conda_types = { version = "0.2.0", path = "../rattler_conda_types" }
thiserror = "1.0.38"
tracing = "0.1.37"

Expand Down

0 comments on commit 599d5a8

Please sign in to comment.