Skip to content

Commit

Permalink
feat: bump polars to 0.38.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Mar 11, 2024
1 parent 2719286 commit 8251a72
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 47 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,5 @@ Collate:
'zzz.R'
Config/rextendr/version: 0.3.1
VignetteBuilder: knitr
Config/polars/LibVersion: 0.38.0
Config/polars/LibVersion: 0.38.1
Config/polars/RustToolchainVersion: nightly-2024-02-23
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### New features

- rust-polars is updated to 0.38.2 (#907).
- Minimum supported Rust version (MSRV) is now 1.7.
- `as_polars_df(<nanoarrow_array>)` is added (#893).
- It is now possible to create an empty `DataFrame` with a specific schema
with `pl$DataFrame(schema = my_schema)` (#901).
Expand Down
70 changes: 35 additions & 35 deletions src/rust/Cargo.lock

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

10 changes: 5 additions & 5 deletions src/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "r-polars"
version = "0.38.0"
version = "0.38.1"
edition = "2021"
rust-version = "1.74.1"
rust-version = "1.76.0"
publish = false

[lib]
Expand Down Expand Up @@ -52,8 +52,8 @@ serde_json = "*"
smartstring = "1.0.1"
state = "0.6.0"
thiserror = "1.0.57"
polars-core = { git = "https://github.com/pola-rs/polars.git", rev = "a199ed57898343dc033e52132e8dfbc6f5ab09e0", default-features = false }
polars-lazy = { git = "https://github.com/pola-rs/polars.git", rev = "a199ed57898343dc033e52132e8dfbc6f5ab09e0", default-features = false }
polars-core = { git = "https://github.com/pola-rs/polars.git", rev = "946fad7a7b56a360e7ec04867aa19f212fcdf5d6", default-features = false }
polars-lazy = { git = "https://github.com/pola-rs/polars.git", rev = "946fad7a7b56a360e7ec04867aa19f212fcdf5d6", default-features = false }
either = "1"
#features copied from node-polars

Expand Down Expand Up @@ -153,4 +153,4 @@ features = [
"zip_with",
]
git = "https://github.com/pola-rs/polars.git"
rev = "a199ed57898343dc033e52132e8dfbc6f5ab09e0"
rev = "946fad7a7b56a360e7ec04867aa19f212fcdf5d6"
1 change: 1 addition & 0 deletions src/rust/src/lazy/dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,7 @@ impl RPolarsLazyFrame {
comm_subexpr_elim,
streaming,
fast_projection: _,
row_estimate: _,
eager,
} = self.0.get_current_optimizations();
list!(
Expand Down
6 changes: 0 additions & 6 deletions tools/lib-sums.tsv

This file was deleted.

0 comments on commit 8251a72

Please sign in to comment.