polars-df 0.6.0-x86_64-darwin → 0.8.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: 8b3159650b164b7006d00f7553b6e140e090573935c90d0089dc14e1d81dcf7e
4
- data.tar.gz: 178365975cd1c29a44ffc546d654971ae60d175faec85bf8ce3a6e7fc651f525
3
+ metadata.gz: 8f78817b42fac78fcfc26d414247b3ea3657e639642f03d60fcc935023c3d471
4
+ data.tar.gz: c5b6fc92873b10d3667b86c157143689df059417e32e68f88263d4294b16c01d
5
5
  SHA512:
6
- metadata.gz: 3b71739878bdda521b321e9bdef8f41ec97e8816e8a5b9150b1e9bafa8d84d53e86c1905cab10daa620883c979b781bc34ed1352a95bc4188d9ee21fe70d2579
7
- data.tar.gz: 456e038a1f6f6dddbdc8bb38fbc36008cd52f2c39ac3f439b044478008abb0b1ddf2e9b37f7844154b2877b842972e35730ef99066627e93870246327a968edb
6
+ metadata.gz: '0229882543ed64b8b7c4ffac01a46c880b74c6ce3b93497bf0e189ae709cc8360bc39adb4531295fb8bca5b88890aeb353a93f3c3d9a48d3cbe200a813c713ad'
7
+ data.tar.gz: 036ebe172db272a889196551e7de30374d752a2003db600d76d5a1775e05394108ba2f9ce864576cc6b89a7811fede82951a935df6a66d2f28c9283f65be2949
data/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ ## 0.8.0 (2023-01-10)
2
+
3
+ - Updated Polars to 0.36.2
4
+ - Added support for Ruby 3.3
5
+ - Added warning to `count` method for `Series` and `Expr` about excluding null values in 0.9.0
6
+ - Added `cut` and `qcut` methods to `Series` and `Expr`
7
+ - Added `rle` and `rle_id` methods to `Series` and `Expr`
8
+ - Added `bottom_k` method to `Series`
9
+ - Aliased `Utf8` data type to `String`
10
+ - Fixed error with `top_k` method
11
+ - Dropped support for Ruby < 3.1
12
+
13
+ ## 0.7.0 (2023-11-17)
14
+
15
+ - Updated Polars to 0.35.2
16
+ - Added support for SQL querying
17
+ - Added `!` for `Expr`
18
+ - Added `Config` module
19
+ - Added `none?` method to `Series`
20
+ - Aliased `groupby` to `group` for `DataFrame` and `LazyFrame`
21
+ - Changed series creation with all `nil` objects to `Null` type
22
+ - Removed `tz_localize` method from `DateTimeExpr`
23
+ - Removed support for passing Active Record objects to `DataFrame.new` (use `read_database` instead)
24
+
1
25
  ## 0.6.0 (2023-07-23)
2
26
 
3
27
  - Updated Polars to 0.31.1