polars-df 0.3.1-x86_64-linux → 0.5.0-x86_64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a463f01b8abad85e681bd86aec1d84cae5e5c3b70e5f86ce5db05b9231660b97
4
- data.tar.gz: b04d866db85cfeb9fa00589a3d2e250b760bb756da01e2e268779459d6b128c0
3
+ metadata.gz: 8c3102400f1d7b559f1f8d2c9b039ffffa719118df2c21274908622dc8124119
4
+ data.tar.gz: dcc323e921b02c30a8b014089832f5d96be11150ad5cdfd079ea70a8b0a15863
5
5
  SHA512:
6
- metadata.gz: ee928c1f0ed2cc2161cd47d36c99daddbd886d282558bc3e3055ea727f60b8d4f56239ed41f69a551e3d2e06bb7bd2d6ce4aa1386e62ab2e77a18247b2b01bd2
7
- data.tar.gz: 28bc923ace08cb68d4379374031bfe441fbeb9ef0b7193072c4ac2622738631f4835cb529b28d7c64bdd17c45d27448d62ba7eec57fa41b696d698d35f6b8cd4
6
+ metadata.gz: a9ba68928ae1556389dada8cd611e8d1e50318c4c0059ba1516cd1b38803c973326fab6386a98eeb892200b2e885448f4463d83662cc10149a8b61e3913ad333
7
+ data.tar.gz: 77b1b27cf6e2c6765874b640094c53a3ab971f66537217c146e4014a1bf3c1bb9991e9b8503dc9b5f51791b0cdcc81b9a20fd7c6c4d96ce7b7ac3d56dae9db1f
data/CHANGELOG.md CHANGED
@@ -1,7 +1,30 @@
1
+ ## 0.5.0 (2023-05-15)
2
+
3
+ - Updated Polars to 0.29.0
4
+ - Added support for `List` and `Struct` to `to_a` method
5
+ - Added support for creating series from Numo arrays
6
+ - Added column assignment to `DataFrame`
7
+ - Added `sort!` and `to_a` methods to `DataFrame`
8
+ - Added support for `Object` to `to_a` method
9
+ - Aliased `len` to `size` for `Series` and `DataFrame`
10
+ - Aliased `apply` to `map` and `unique` to `uniq` for `Series`
11
+ - Improved `any` and `all` for `Series`
12
+
13
+ ## 0.4.0 (2023-04-01)
14
+
15
+ - Updated Polars to 0.28.0
16
+ - Added support for creating `Binary` series
17
+ - Added support for `Binary` to `to_a` method
18
+ - Added support for glob patterns to `read_parquet` method
19
+ - Added `sink_parquet` method to `LazyFrame`
20
+ - Added `BinaryExpr` and `BinaryNameSpace`
21
+ - Prefer `read_database` over `read_sql`
22
+
1
23
  ## 0.3.1 (2023-02-21)
2
24
 
25
+ - Added `plot` method to `DataFrame` and `GroupBy`
3
26
  - Added `to_numo` method to `Series` and `DataFrame`
4
- - Added `plot` method to `DataFrame`
27
+ - Added support for `Datetime` to `to_a` method
5
28
  - Fixed `is_datelike` method for `Datetime` and `Duration`
6
29
 
7
30
  ## 0.3.0 (2023-02-15)