Skip to content

Commit f835368

Browse files
authored
Mark next release as 1.7 instead of 2.0 (dmlc#8281)
1 parent 6d14520 commit f835368

File tree

19 files changed

+38
-39
lines changed

19 files changed

+38
-39
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
2-
project(xgboost LANGUAGES CXX C VERSION 2.0.0)
2+
project(xgboost LANGUAGES CXX C VERSION 1.7.0)
33
include(cmake/Utils.cmake)
44
list(APPEND CMAKE_MODULE_PATH "${xgboost_SOURCE_DIR}/cmake/modules")
55
cmake_policy(SET CMP0022 NEW)

R-package/DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: xgboost
22
Type: Package
33
Title: Extreme Gradient Boosting
4-
Version: 2.0.0.1
5-
Date: 2022-03-29
4+
Version: 1.7.0.1
5+
Date: 2022-09-28
66
Authors@R: c(
77
person("Tianqi", "Chen", role = c("aut"),
88
email = "tianqi.tchen@gmail.com"),

doc/jvm/xgboost4j_spark_tutorial.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ and then loading the model in another session:
347347
348348
.. note::
349349

350-
Besides dumping the model to raw format, users are able to dump the model to be json or ubj format from ``version 2.0.0+``.
350+
Besides dumping the model to raw format, users are able to dump the model to be json or ubj format from ``version 1.7.0+``.
351351

352352
.. code-block:: scala
353353
@@ -362,7 +362,7 @@ Interact with Other Bindings of XGBoost
362362
After we train a model with XGBoost4j-Spark on massive dataset, sometimes we want to do model serving
363363
in single machine or integrate it with other single node libraries for further processing.
364364

365-
After saving the model, we can load this model with single node Python XGBoost directly from ``version 2.0.0+``.
365+
After saving the model, we can load this model with single node Python XGBoost directly from ``version 1.7.0+``.
366366

367367
.. code-block:: scala
368368
@@ -375,7 +375,7 @@ After saving the model, we can load this model with single node Python XGBoost d
375375
bst = xgb.Booster({'nthread': 4})
376376
bst.load_model("/tmp/xgbClassificationModel/data/XGBoostClassificationModel")
377377
378-
Before ``version 2.0.0``, XGBoost4j-Spark needs to export model to local manually by:
378+
Before ``version 1.7.0``, XGBoost4j-Spark needs to export model to local manually by:
379379

380380
.. code-block:: scala
381381

doc/parameter.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ These parameters are only used for training with categorical data. See
237237

238238
.. versionadded:: 1.6
239239

240-
.. note:: This parameter is experimental. ``exact`` tree method is not supported yet.
240+
.. note:: This parameter is experimental. ``exact`` tree method is not yet supported.
241241

242242
- A threshold for deciding whether XGBoost should use one-hot encoding based split for
243243
categorical data. When number of categories is lesser than the threshold then one-hot
@@ -247,10 +247,9 @@ These parameters are only used for training with categorical data. See
247247

248248
* ``max_cat_threshold``
249249

250-
.. versionadded:: 2.0
250+
.. versionadded:: 1.7.0
251251

252-
.. note:: This parameter is experimental. ``exact`` and ``gpu_hist`` tree methods are
253-
not supported yet.
252+
.. note:: This parameter is experimental. ``exact`` tree method is not yet supported.
254253

255254
- Maximum number of categories considered for each split. Used only by partition-based
256255
splits for preventing over-fitting.

doc/tutorials/dask.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ dask config is used:
508508
IPv6 Support
509509
************
510510

511-
.. versionadded:: 2.0.0
511+
.. versionadded:: 1.7.0
512512

513513
XGBoost has initial IPv6 support for the dask interface on Linux. Due to most of the
514514
cluster support for IPv6 is partial (dual stack instead of IPv6 only), we require

doc/tutorials/spark_estimator.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
###############################
22
Using XGBoost PySpark Estimator
33
###############################
4-
Starting from version 2.0, xgboost supports pyspark estimator APIs.
5-
The feature is still experimental and not yet ready for production use.
4+
Starting from version 1.7.0, xgboost supports pyspark estimator APIs. The feature is
5+
still experimental and not yet ready for production use.
66

77
*****************
88
SparkXGBRegressor

include/xgboost/c_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ XGB_DLL int XGQuantileDMatrixCreateFromCallback(DataIterHandle iter, DMatrixHand
453453

454454
/*!
455455
* \brief Create a Device Quantile DMatrix with data iterator.
456-
* \deprecated since 2.0
456+
* \deprecated since 1.7.0
457457
* \see XGQuantileDMatrixCreateFromCallback()
458458
*/
459459
XGB_DLL int XGDeviceQuantileDMatrixCreateFromCallback(DataIterHandle iter, DMatrixHandle proxy,

include/xgboost/version_config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#ifndef XGBOOST_VERSION_CONFIG_H_
55
#define XGBOOST_VERSION_CONFIG_H_
66

7-
#define XGBOOST_VER_MAJOR 2
8-
#define XGBOOST_VER_MINOR 0
7+
#define XGBOOST_VER_MAJOR 1
8+
#define XGBOOST_VER_MINOR 7
99
#define XGBOOST_VER_PATCH 0
1010

1111
#endif // XGBOOST_VERSION_CONFIG_H_

jvm-packages/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>ml.dmlc</groupId>
88
<artifactId>xgboost-jvm_2.12</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>1.7.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111
<name>XGBoost JVM Package</name>
1212
<description>JVM Package for XGBoost</description>

jvm-packages/xgboost4j-example/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<parent>
77
<groupId>ml.dmlc</groupId>
88
<artifactId>xgboost-jvm_2.12</artifactId>
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>1.7.0-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>xgboost4j-example_2.12</artifactId>
12-
<version>2.0.0-SNAPSHOT</version>
12+
<version>1.7.0-SNAPSHOT</version>
1313
<packaging>jar</packaging>
1414
<build>
1515
<plugins>
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>ml.dmlc</groupId>
2828
<artifactId>xgboost4j-spark_${scala.binary.version}</artifactId>
29-
<version>2.0.0-SNAPSHOT</version>
29+
<version>1.7.0-SNAPSHOT</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.apache.spark</groupId>
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>ml.dmlc</groupId>
3939
<artifactId>xgboost4j-flink_${scala.binary.version}</artifactId>
40-
<version>2.0.0-SNAPSHOT</version>
40+
<version>1.7.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>org.apache.commons</groupId>

0 commit comments

Comments
 (0)