Skip to content

Commit bfa5e96

Browse files
authored
chore: Update Polars Rust versions (#22834)
1 parent 946bf58 commit bfa5e96

File tree

5 files changed

+52
-52
lines changed

5 files changed

+52
-52
lines changed

Cargo.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ default-members = [
1010
]
1111

1212
[workspace.package]
13-
version = "0.47.1"
13+
version = "0.48.0"
1414
authors = ["Ritchie Vink <[email protected]>"]
1515
edition = "2024"
1616
homepage = "https://www.pola.rs/"
@@ -96,36 +96,36 @@ version_check = "0.9.4"
9696
xxhash-rust = { version = "0.8.6", features = ["xxh3"] }
9797
zstd = "0.13"
9898

99-
polars = { version = "0.47.1", path = "crates/polars", default-features = false }
100-
polars-compute = { version = "0.47.1", path = "crates/polars-compute", default-features = false }
101-
polars-core = { version = "0.47.1", path = "crates/polars-core", default-features = false }
102-
polars-dylib = { version = "0.47.1", path = "crates/polars-dylib", default-features = false }
103-
polars-error = { version = "0.47.1", path = "crates/polars-error", default-features = false }
104-
polars-expr = { version = "0.47.1", path = "crates/polars-expr", default-features = false }
105-
polars-ffi = { version = "0.47.1", path = "crates/polars-ffi", default-features = false }
106-
polars-io = { version = "0.47.1", path = "crates/polars-io", default-features = false }
107-
polars-json = { version = "0.47.1", path = "crates/polars-json", default-features = false }
108-
polars-lazy = { version = "0.47.1", path = "crates/polars-lazy", default-features = false }
109-
polars-mem-engine = { version = "0.47.1", path = "crates/polars-mem-engine", default-features = false }
110-
polars-ops = { version = "0.47.1", path = "crates/polars-ops", default-features = false }
111-
polars-parquet = { version = "0.47.1", path = "crates/polars-parquet", default-features = false }
112-
polars-pipe = { version = "0.47.1", path = "crates/polars-pipe", default-features = false }
113-
polars-plan = { version = "0.47.1", path = "crates/polars-plan", default-features = false }
114-
polars-python = { version = "0.47.1", path = "crates/polars-python", default-features = false }
115-
polars-row = { version = "0.47.1", path = "crates/polars-row", default-features = false }
116-
polars-schema = { version = "0.47.1", path = "crates/polars-schema", default-features = false }
117-
polars-sql = { version = "0.47.1", path = "crates/polars-sql", default-features = false }
118-
polars-stream = { version = "0.47.1", path = "crates/polars-stream", default-features = false }
119-
polars-time = { version = "0.47.1", path = "crates/polars-time", default-features = false }
120-
polars-utils = { version = "0.47.1", path = "crates/polars-utils", default-features = false }
99+
polars = { version = "0.48.0", path = "crates/polars", default-features = false }
100+
polars-compute = { version = "0.48.0", path = "crates/polars-compute", default-features = false }
101+
polars-core = { version = "0.48.0", path = "crates/polars-core", default-features = false }
102+
polars-dylib = { version = "0.48.0", path = "crates/polars-dylib", default-features = false }
103+
polars-error = { version = "0.48.0", path = "crates/polars-error", default-features = false }
104+
polars-expr = { version = "0.48.0", path = "crates/polars-expr", default-features = false }
105+
polars-ffi = { version = "0.48.0", path = "crates/polars-ffi", default-features = false }
106+
polars-io = { version = "0.48.0", path = "crates/polars-io", default-features = false }
107+
polars-json = { version = "0.48.0", path = "crates/polars-json", default-features = false }
108+
polars-lazy = { version = "0.48.0", path = "crates/polars-lazy", default-features = false }
109+
polars-mem-engine = { version = "0.48.0", path = "crates/polars-mem-engine", default-features = false }
110+
polars-ops = { version = "0.48.0", path = "crates/polars-ops", default-features = false }
111+
polars-parquet = { version = "0.48.0", path = "crates/polars-parquet", default-features = false }
112+
polars-pipe = { version = "0.48.0", path = "crates/polars-pipe", default-features = false }
113+
polars-plan = { version = "0.48.0", path = "crates/polars-plan", default-features = false }
114+
polars-python = { version = "0.48.0", path = "crates/polars-python", default-features = false }
115+
polars-row = { version = "0.48.0", path = "crates/polars-row", default-features = false }
116+
polars-schema = { version = "0.48.0", path = "crates/polars-schema", default-features = false }
117+
polars-sql = { version = "0.48.0", path = "crates/polars-sql", default-features = false }
118+
polars-stream = { version = "0.48.0", path = "crates/polars-stream", default-features = false }
119+
polars-time = { version = "0.48.0", path = "crates/polars-time", default-features = false }
120+
polars-utils = { version = "0.48.0", path = "crates/polars-utils", default-features = false }
121121

122122
[workspace.dependencies.arrow-format]
123123
package = "polars-arrow-format"
124124
version = "0.1.0"
125125

126126
[workspace.dependencies.arrow]
127127
package = "polars-arrow"
128-
version = "0.47.1"
128+
version = "0.48.0"
129129
path = "crates/polars-arrow"
130130
default-features = false
131131
features = [

crates/polars-arrow/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ strum_macros = { workspace = true }
5656

5757
[dev-dependencies]
5858
# used to run formal property testing
59-
arrow = { workspace = true, features = ["proptest"] }
59+
polars-arrow = { path = ".", features = ["proptest"] }
6060
proptest = { workspace = true }
6161

6262
# use for flaky testing

crates/polars-parquet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ proptest = { workspace = true, optional = true }
4545

4646
[dev-dependencies]
4747
# ensure that the proptest feature is enabled when we are testing
48-
polars-parquet = { workspace = true, features = ["proptest"] }
48+
polars-parquet = { path = ".", features = ["proptest"] }
4949

5050
rand = "0.8"
5151

crates/polars-testing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To use `polars-testing`, add it as a dependency to your Rust project's `Cargo.to
99

1010
```toml
1111
[dependencies]
12-
polars-testing = "0.47.1"
12+
polars-testing = "0.48.0"
1313
```
1414

1515
You can then import the crate in your Rust code using:

0 commit comments

Comments
 (0)