Skip to content

Commit a2dac60

Browse files
committed
Version bump to 0.10.0 [skip ci]
1 parent 8009202 commit a2dac60

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.10.0 (unreleased)
1+
## 0.10.0 (2025-03-15)
22

33
- Updated XGBoost to 3.0.0
44

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ model.feature_importances
126126
Early stopping
127127

128128
```ruby
129-
model.fit(x, y, eval_set: [[x_test, y_test]], early_stopping_rounds: 5)
129+
model = XGBoost::Regressor.new(early_stopping_rounds: 5)
130+
model.fit(x, y, eval_set: [[x_test, y_test]])
130131
```
131132

132133
## Data

lib/xgboost/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module XGBoost
2-
VERSION = "0.9.0"
2+
VERSION = "0.10.0"
33
end

0 commit comments

Comments
 (0)