Skip to content

Commit e479f30

Browse files
committed
Version bump to 0.24.0 [skip ci]
1 parent fc24092 commit e479f30

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.24.0 (unreleased)
1+
## 0.24.0 (2026-02-04)
22

33
- Added support for Ruby 4.0
44
- Added support for streaming engine

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -438,24 +438,24 @@ gem "vega"
438438
And use:
439439

440440
```ruby
441-
df.plot("a", "b", type: "line")
441+
df.plot.line("a", "b")
442442
```
443443

444444
Supports `line`, `pie`, `column`, `bar`, `area`, and `scatter` plots
445445

446446
Group data
447447

448448
```ruby
449-
df.plot("a", "b", group: "c", type: "line")
449+
df.plot.line("a", "b", color: "c")
450450
```
451451

452452
Stacked columns or bars
453453

454454
```ruby
455-
df.plot("a", "b", group: "c", type: "column", stacked: true)
455+
df.plot.column("a", "b", color: "c", stacked: true)
456456
```
457457

458-
Plot a series [unreleased]
458+
Plot a series
459459

460460
```ruby
461461
df["a"].plot.hist

ext/polars/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polars-ruby"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
license = "MIT"
55
authors = ["Andrew Kane <andrew@ankane.org>"]
66
edition = "2024"

lib/polars/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module Polars
22
# @private
3-
VERSION = "0.23.0"
3+
VERSION = "0.24.0"
44
end

0 commit comments

Comments
 (0)