polars-df 0.22.0-x86_64-linux-musl → 0.23.0-x86_64-linux-musl

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.
@@ -200,7 +200,7 @@ module Polars
200
200
  # s.str.to_decimal
201
201
  # # =>
202
202
  # # shape: (7,)
203
- # # Series: '' [decimal[*,2]]
203
+ # # Series: '' [decimal[8,2]]
204
204
  # # [
205
205
  # # 40.12
206
206
  # # 3420.13
@@ -90,8 +90,8 @@ module Polars
90
90
  end
91
91
  end
92
92
 
93
- def self._to_ruby_decimal(digits, scale)
94
- BigDecimal("#{digits}e#{scale}")
93
+ def self._to_ruby_decimal(prec, value)
94
+ BigDecimal(value, prec)
95
95
  end
96
96
  end
97
97
  end
@@ -1,4 +1,4 @@
1
1
  module Polars
2
2
  # @private
3
- VERSION = "0.22.0"
3
+ VERSION = "0.23.0"
4
4
  end
data/lib/polars.rb CHANGED
@@ -54,6 +54,7 @@ require_relative "polars/functions/range/datetime_range"
54
54
  require_relative "polars/functions/range/int_range"
55
55
  require_relative "polars/functions/range/time_range"
56
56
  require_relative "polars/group_by"
57
+ require_relative "polars/iceberg_dataset"
57
58
  require_relative "polars/io/avro"
58
59
  require_relative "polars/io/csv"
59
60
  require_relative "polars/io/database"
@@ -64,6 +65,7 @@ require_relative "polars/io/json"
64
65
  require_relative "polars/io/ndjson"
65
66
  require_relative "polars/io/parquet"
66
67
  require_relative "polars/io/scan_options"
68
+ require_relative "polars/io/utils"
67
69
  require_relative "polars/lazy_frame"
68
70
  require_relative "polars/lazy_group_by"
69
71
  require_relative "polars/list_expr"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polars-df
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.23.0
5
5
  platform: x86_64-linux-musl
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-18 00:00:00.000000000 Z
11
+ date: 2025-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal
@@ -84,6 +84,7 @@ files:
84
84
  - lib/polars/functions/repeat.rb
85
85
  - lib/polars/functions/whenthen.rb
86
86
  - lib/polars/group_by.rb
87
+ - lib/polars/iceberg_dataset.rb
87
88
  - lib/polars/io/avro.rb
88
89
  - lib/polars/io/csv.rb
89
90
  - lib/polars/io/database.rb
@@ -94,6 +95,7 @@ files:
94
95
  - lib/polars/io/ndjson.rb
95
96
  - lib/polars/io/parquet.rb
96
97
  - lib/polars/io/scan_options.rb
98
+ - lib/polars/io/utils.rb
97
99
  - lib/polars/lazy_frame.rb
98
100
  - lib/polars/lazy_group_by.rb
99
101
  - lib/polars/list_expr.rb