polars-df 0.3.1-x86_64-darwin → 0.5.0-x86_64-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: 8db31e27e3e68bb1714ec1feafddf9874fde4f3d7bb8f399ade18b0b7e48e98d
4
- data.tar.gz: bd9704f2bee8c19dfe1e479abe5097100edccd9b22b051c9010fb0485e795e09
3
+ metadata.gz: 7d4c736081e3d555ee9929e3b93bf93aa99fa92bf0c3eae1e84b488aa85ce12e
4
+ data.tar.gz: 195e7a1d44d077553d4075117efcea52782bbad4bc8be9a37215b0d54cae0deb
5
5
  SHA512:
6
- metadata.gz: 3cf8e1aee531ee78d36b20ae2387fa37c3ce00204b88eae6df86c71daf1becf689faca9991287dcd4ecd247f81dbfbfc6bb9c5836faf0ff9008ba28bf9d58343
7
- data.tar.gz: 502e8596310e9cb5ae9b71e7da44067f5253e5eb7940a1da085f4f1bc2b190ae9c39a50e9ba8b5c2ded72e2fbfec1c4e82bb109a06cf4d1096c01201a8064c77
6
+ metadata.gz: cb3447cad04bdce5ddd3729d059976cf9dc2511cbc5db0095224f8acaeec20bdf2822dbe48d0c8bbfe6ef54e81266406ea8ce6d3b0f970fc072036253bbea39b
7
+ data.tar.gz: b2fc66f4045b05e01122e8be6b64292cdaf5000bf0c17b3add8156f065db1df66762e6d5ba4272179bf98ba42cd15cf48b249e5b06b3eb66649f7692d71932ea
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)