polars-df 0.3.1-aarch64-linux → 0.5.0-aarch64-linux

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: 03146f4d688d578d073c3d7a18b06ec90ad625f2bad3e2c380d692b819237b2b
4
- data.tar.gz: 84eb7c89fd428d31305f24e3593dcdcf6ece964deb75d704c6669658046ffe51
3
+ metadata.gz: 10e246df58e5147669542bf51fc8d86dc3d69b08ab339282d83dc872c94ecfbd
4
+ data.tar.gz: 45f2709936d33738c8e6d70ed5765e07e0db5f3635a97c7f5539d9e1a2de0b15
5
5
  SHA512:
6
- metadata.gz: 0fc21805cd8778ce2579150620bf22cf9fee107651d583b58696917356009760ece5ab07e72b9434efb19af7ef69eb10cd7707a04bdbad8393eb17f03adaa440
7
- data.tar.gz: 50cb3d957b150cadd2e2578fdfaf0e20a66d03f31f69546e4478895e5c4758889ddfedba7d728b6c72d7f43b136b7705a807bf850509935c708bc71f171dde5a
6
+ metadata.gz: 6e2f2ec4fca66d2d488e602a6e163b256c33ecb463f63c45992f8f13f2de5964484fad378e0690e79cf2596e2aa014a1d905198c152b879df885890d1d658f36
7
+ data.tar.gz: 224f1202b84ff8bd4fb686506056db0f6bbef0c9feaae50eaf62ac7721b4614d2b3ce4d153689d7c1cc44a445a409ce645ac62212c027df4d36b2f9174591e6b
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)