Skip to content

Commit

Permalink
chore: mark some crates 1.0 (#789)
Browse files Browse the repository at this point in the history
This PR marks the following crates as 1.0:

* `rattler_solve`
* `rattler_virtual_packages`
* `rattler_digest`
* `rattler_macros`
* `rattler_libsolv_c`

We mark them as 1.0 because their API has been stable enough for a long
time and we also do not foresee any large refactors in the foreseeable
future.
  • Loading branch information
baszalmstra authored Jul 25, 2024
1 parent 35caccc commit 809d3c4
Show file tree
Hide file tree
Showing 14 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions crates/rattler-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ rattler = { path="../rattler", version = "0.27.2", default-features = false, fea
rattler_conda_types = { path="../rattler_conda_types", version = "0.26.3", default-features = false }
rattler_networking = { path="../rattler_networking", version = "0.20.10", default-features = false }
rattler_repodata_gateway = { path="../rattler_repodata_gateway", version = "0.21.3", default-features = false, features = ["gateway"] }
rattler_solve = { path="../rattler_solve", version = "0.25.3", default-features = false, features = ["resolvo", "libsolv_c"] }
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "0.19.20", default-features = false }
rattler_solve = { path="../rattler_solve", version = "1.0.0", default-features = false, features = ["resolvo", "libsolv_c"] }
rattler_virtual_packages = { path="../rattler_virtual_packages", version = "1.0.0", default-features = false }
rattler_cache = { path="../rattler_cache", version = "0.1.4", default-features = false }
reqwest = { workspace = true }
reqwest-middleware = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ once_cell = { workspace = true }
parking_lot = { workspace = true }
rattler_cache = { path = "../rattler_cache", version = "0.1.4", default-features = false }
rattler_conda_types = { path = "../rattler_conda_types", version = "0.26.3", default-features = false }
rattler_digest = { path = "../rattler_digest", version = "0.19.5", default-features = false }
rattler_digest = { path = "../rattler_digest", version = "1.0.0", default-features = false }
rattler_networking = { path = "../rattler_networking", version = "0.20.10", default-features = false }
rattler_shell = { path = "../rattler_shell", version = "0.21.3", default-features = false }
rattler_package_streaming = { path = "../rattler_package_streaming", version = "0.21.7", default-features = false, features = ["reqwest"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fxhash.workspace = true
itertools.workspace = true
parking_lot.workspace = true
rattler_conda_types = { version = "0.26.3", path = "../rattler_conda_types", default-features = false }
rattler_digest = { version = "0.19.5", path = "../rattler_digest", default-features = false }
rattler_digest = { version = "1.0.0", path = "../rattler_digest", default-features = false }
rattler_networking = { version = "0.20.10", path = "../rattler_networking", default-features = false }
rattler_package_streaming = { version = "0.21.7", path = "../rattler_package_streaming", default-features = false, features = ["reqwest"] }
reqwest.workspace = true
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 @@ -20,8 +20,8 @@ itertools = { workspace = true }
lazy-regex = { workspace = true }
nom = { workspace = true }
purl = { workspace = true, features = ["serde"] }
rattler_digest = { path = "../rattler_digest", version = "0.19.5", default-features = false, features = ["serde"] }
rattler_macros = { path = "../rattler_macros", version = "0.19.4", default-features = false }
rattler_digest = { path = "../rattler_digest", version = "1.0.0", default-features = false, features = ["serde"] }
rattler_macros = { path = "../rattler_macros", version = "1.0.0", default-features = false }
regex = { workspace = true }
simd-json = { workspace = true , features = ["serde_impl"]}
serde = { workspace = true, features = ["derive", "rc"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_digest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_digest"
version = "0.19.5"
version = "1.0.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "An simple crate used by rattler crates to compute different hashes from different sources"
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ readme.workspace = true
[dependencies]
fs-err = { workspace = true }
rattler_conda_types = { path="../rattler_conda_types", version = "0.26.3", default-features = false }
rattler_digest = { path="../rattler_digest", version = "0.19.5", default-features = false }
rattler_digest = { path="../rattler_digest", version = "1.0.0", default-features = false }
rattler_package_streaming = { path="../rattler_package_streaming", version = "0.21.7", default-features = false }
serde_json = { workspace = true }
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_libsolv_c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_libsolv_c"
version = "0.19.5"
version = "1.0.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Bindings for libsolv"
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_lock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fxhash = { workspace = true }
indexmap = { workspace = true, features = ["serde"] }
itertools = { workspace = true }
rattler_conda_types = { path = "../rattler_conda_types", version = "0.26.3", default-features = false }
rattler_digest = { path = "../rattler_digest", version = "0.19.5", default-features = false }
rattler_digest = { path = "../rattler_digest", version = "1.0.0", default-features = false }
file_url = { path = "../file_url", version = "0.1.3" }
pep508_rs = { workspace = true, features = ["serde"] }
pep440_rs = { workspace = true, features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_macros"
version = "0.19.4"
version = "1.0.0"
edition.workspace = true
authors = ["Wolf Vollprecht <w.vollprecht@gmail.com>"]
description = "A crate that provideds some procedural macros for the rattler project"
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 @@ -16,7 +16,7 @@ chrono = { workspace = true }
futures-util = { workspace = true }
num_cpus = { workspace = true }
rattler_conda_types = { path="../rattler_conda_types", version = "0.26.3", default-features = false }
rattler_digest = { path="../rattler_digest", version = "0.19.5", default-features = false }
rattler_digest = { path="../rattler_digest", version = "1.0.0", default-features = false }
rattler_networking = { path="../rattler_networking", version = "0.20.10", default-features = false }
reqwest = { workspace = true, features = ["stream"], optional = true }
reqwest-middleware = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_repodata_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ouroboros = { workspace = true, optional = true }
parking_lot = { workspace = true, optional = true }
pin-project-lite = { workspace = true }
rattler_conda_types = { path = "../rattler_conda_types", version = "0.26.3", default-features = false, optional = true }
rattler_digest = { path = "../rattler_digest", version = "0.19.5", default-features = false, features = ["tokio", "serde"] }
rattler_digest = { path = "../rattler_digest", version = "1.0.0", default-features = false, features = ["tokio", "serde"] }
rattler_networking = { path = "../rattler_networking", version = "0.20.10", default-features = false }
reqwest = { workspace = true, features = ["stream", "http2"] }
reqwest-middleware = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/rattler_solve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_solve"
version = "0.25.3"
version = "1.0.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "A crate to solve conda environments"
Expand All @@ -12,15 +12,15 @@ readme.workspace = true

[dependencies]
rattler_conda_types = { path="../rattler_conda_types", version = "0.26.3", default-features = false }
rattler_digest = { path="../rattler_digest", version = "0.19.5", default-features = false }
rattler_digest = { path="../rattler_digest", version = "1.0.0", default-features = false }
libc = { workspace = true, optional = true }
chrono = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
itertools = { workspace = true }
url = { workspace = true }
tempfile = { workspace = true }
rattler_libsolv_c = { path="../rattler_libsolv_c", version = "0.19.5", default-features = false, optional = true }
rattler_libsolv_c = { path="../rattler_libsolv_c", version = "1.0.0", default-features = false, optional = true }
resolvo = { workspace = true, optional = true }
futures = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_virtual_packages/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rattler_virtual_packages"
version = "0.19.20"
version = "1.0.0"
edition.workspace = true
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
description = "Library to work with and detect Conda virtual packages"
Expand Down
24 changes: 12 additions & 12 deletions py-rattler/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 809d3c4

Please sign in to comment.