polars-df 0.3.1-arm64-darwin → 0.5.0-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73bfc5278ee5dfe829af3c38f8a1dabd55cbeafebcccd03bed68df6735cd70bd
4
- data.tar.gz: 8cccd40eae4f3413f9f62ccce4d2ddf9668f61a74be81adaf8de3115ae630793
3
+ metadata.gz: 65bf6e274df46177d967f70ced2951aa0d25418bae445ff49633cfefb4d00f1f
4
+ data.tar.gz: 48ef95ad2f554ea10bc620a29037af4b31d52ed964908ed3a04596e0a0340e6a
5
5
  SHA512:
6
- metadata.gz: c69152b898468136f642746604041bce87747ba7ee6119f825b6a7166aee5f9696861985a8092fd6d79fd5a3b49c7828571ceccc8d7c96b9262fed75670949bd
7
- data.tar.gz: d6614b5f214c09b7fa09fd72392a5892f1b007df10779c241c8bd41e33452ed144c26916a2b29c2c18e3ae6ea58b90145f1e047b6cc4a0fc03a2046bf1a4b50b
6
+ metadata.gz: 11ad09e4a66bd02e92d60356b3b224484b1753aced2ac5ad4f19030556b15173105fdcb389cf6442e7312cc4ce7d8f297ba44a56603f7bf4135124ae306ca188
7
+ data.tar.gz: c21ea8cac949e3d2795e6dae89119eb71e023400c33bd5bef95e0d3c31c3a220225bb6beb3d52cd73f1cc9dad5e66a73068407687d19bbc43337ec88c6b2a95b
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)