Skip to content

Commit

Permalink
Updated Polars to 0.40.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed May 22, 2024
1 parent be658d8 commit 452fb2e
Show file tree
Hide file tree
Showing 36 changed files with 1,148 additions and 485 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
## 0.10.1 (unreleased)
## 0.11.0 (unreleased)

- Updated Polars to 0.40.0
- Added `date_ranges` method to `Polars`
- Added support for keyword arguments to `agg` methods
- Aliased `apply` to `map_rows` for `DataFrame`
- Changed default `name` for `with_row_index` from `row_nr` to `index`

## 0.10.0 (2024-05-02)

Expand Down
132 changes: 87 additions & 45 deletions Cargo.lock

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

9 changes: 5 additions & 4 deletions ext/polars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ ahash = "0.8"
chrono = "0.4"
either = "1.8"
magnus = "0.6"
polars-core = "=0.39.2"
polars-parquet = "=0.39.2"
polars-utils = "=0.39.2"
polars-core = "=0.40.0"
polars-parquet = "=0.40.0"
polars-utils = "=0.40.0"
serde_json = "1"
smartstring = "1"

[dependencies.polars]
version = "=0.39.2"
version = "=0.40.0"
features = [
"abs",
"approx_unique",
Expand Down Expand Up @@ -91,6 +91,7 @@ features = [
"replace",
"rle",
"rolling_window",
"rolling_window_by",
"round_series",
"row_hash",
"search_sorted",
Expand Down
Loading

0 comments on commit 452fb2e

Please sign in to comment.