xgb 0.5.3 → 0.6.0

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: 3d7ca12a05dec9060ffa8a269b3fdfba5dbe176432e7ac3c9ad621f0f8e25571
4
- data.tar.gz: d41db17d81b375bb9c51879f6a80446d713dac4ed892d7bfed3adecae071bd8e
3
+ metadata.gz: cdd655115731644397164860cb8d64b742ef314f37db362809769b7711d12098
4
+ data.tar.gz: 8f9b44a5d288ae3becda432fefd5f98005b4ee2843df2ee2e54d9617c19c923a
5
5
  SHA512:
6
- metadata.gz: 4173a8fe5cd5de6dbe252d3ffde2ecabc0556547ced64ab82e7dca7ab593a502d64402010590090ca0291264b0a03ce499ef4c16668e207a8f91076c1935b142
7
- data.tar.gz: 961b1f5c10418d8ed5bf9de88ef0d43d1ae65edf92e0ce2d5e90a6f4dbbd2638a8a25b7ceb0edddc147e5f35a574ab383ef67c4388764ca4d4138a8bcfcf9f90
6
+ metadata.gz: 9283d55fb5f0a076cea1ccd3984a611b708d0fc063589a0389b125e84f75e1a7c9285de3251577773f5dda212b6f8d4080b00ba9c0298f8a2f4a2c1bf36c31b8
7
+ data.tar.gz: 60c7f8eab579b7ef0f0049710ee98197f734692fb0f9e2513641bb1e312512e1991a6e9ca0aea834ff2e2852d141470027e6a2fc4fe8d2a016380fd26d71fda5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.6.0 (2021-10-23)
2
+
3
+ - Updated XGBoost to 1.5.0
4
+
1
5
  ## 0.5.3 (2021-05-12)
2
6
 
3
7
  - Updated XGBoost to 1.4.0
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # XGBoost
1
+ # XGBoost Ruby
2
2
 
3
3
  [XGBoost](https://github.com/dmlc/xgboost) - high performance gradient boosting - for Ruby
4
4
 
5
- [![Build Status](https://github.com/ankane/xgboost/workflows/build/badge.svg?branch=master)](https://github.com/ankane/xgboost/actions)
5
+ [![Build Status](https://github.com/ankane/xgboost-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/xgboost-ruby/actions)
6
6
 
7
7
  ## Installation
8
8
 
@@ -173,22 +173,22 @@ Thanks to the [xgboost](https://github.com/PairOnAir/xgboost-ruby) gem for showi
173
173
 
174
174
  ## History
175
175
 
176
- View the [changelog](https://github.com/ankane/xgboost/blob/master/CHANGELOG.md)
176
+ View the [changelog](https://github.com/ankane/xgboost-ruby/blob/master/CHANGELOG.md)
177
177
 
178
178
  ## Contributing
179
179
 
180
180
  Everyone is encouraged to help improve this project. Here are a few ways you can help:
181
181
 
182
- - [Report bugs](https://github.com/ankane/xgboost/issues)
183
- - Fix bugs and [submit pull requests](https://github.com/ankane/xgboost/pulls)
182
+ - [Report bugs](https://github.com/ankane/xgboost-ruby/issues)
183
+ - Fix bugs and [submit pull requests](https://github.com/ankane/xgboost-ruby/pulls)
184
184
  - Write, clarify, or fix documentation
185
185
  - Suggest or add new features
186
186
 
187
187
  To get started with development:
188
188
 
189
189
  ```sh
190
- git clone https://github.com/ankane/xgboost.git
191
- cd xgboost
190
+ git clone https://github.com/ankane/xgboost-ruby.git
191
+ cd xgboost-ruby
192
192
  bundle install
193
193
  bundle exec rake vendor:all
194
194
  bundle exec rake test
@@ -1,3 +1,3 @@
1
1
  module XGBoost
2
- VERSION = "0.5.3"
2
+ VERSION = "0.6.0"
3
3
  end
Binary file
Binary file
Binary file
data/vendor/libxgboost.so CHANGED
Binary file
data/vendor/xgboost.dll CHANGED
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xgb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-13 00:00:00.000000000 Z
11
+ date: 2021-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -51,7 +51,7 @@ files:
51
51
  - vendor/libxgboost.dylib
52
52
  - vendor/libxgboost.so
53
53
  - vendor/xgboost.dll
54
- homepage: https://github.com/ankane/xgboost
54
+ homepage: https://github.com/ankane/xgboost-ruby
55
55
  licenses:
56
56
  - Apache-2.0
57
57
  metadata: {}
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
70
  - !ruby/object:Gem::Version
71
71
  version: '0'
72
72
  requirements: []
73
- rubygems_version: 3.2.3
73
+ rubygems_version: 3.2.22
74
74
  signing_key:
75
75
  specification_version: 4
76
76
  summary: High performance gradient boosting for Ruby