Skip to content

Commit a78d0d4

Browse files
authored
Release patch release 1.3.1 (#6543)
1 parent 76c3614 commit a78d0d4

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.13)
2-
project(xgboost LANGUAGES CXX C VERSION 1.3.0)
2+
project(xgboost LANGUAGES CXX C VERSION 1.3.1)
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: xgboost
22
Type: Package
33
Title: Extreme Gradient Boosting
4-
Version: 1.3.0.1
4+
Version: 1.3.1.1
55
Date: 2020-08-28
66
Authors@R: c(
77
person("Tianqi", "Chen", role = c("aut"),

include/xgboost/version_config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77
#define XGBOOST_VER_MAJOR 1
88
#define XGBOOST_VER_MINOR 3
9-
#define XGBOOST_VER_PATCH 0
9+
#define XGBOOST_VER_PATCH 1
1010

1111
#endif // XGBOOST_VERSION_CONFIG_H_

jvm-packages/pom.xml

+1-1
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>1.3.0</version>
9+
<version>1.3.1</version>
1010
<packaging>pom</packaging>
1111
<name>XGBoost JVM Package</name>
1212
<description>JVM Package for XGBoost</description>

jvm-packages/xgboost4j-example/pom.xml

+4-4
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>1.3.0</version>
9+
<version>1.3.1</version>
1010
</parent>
1111
<artifactId>xgboost4j-example_2.12</artifactId>
12-
<version>1.3.0</version>
12+
<version>1.3.1</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>1.3.0</version>
29+
<version>1.3.1</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>1.3.0</version>
40+
<version>1.3.1</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>org.apache.commons</groupId>

jvm-packages/xgboost4j-flink/pom.xml

+3-3
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>1.3.0</version>
9+
<version>1.3.1</version>
1010
</parent>
1111
<artifactId>xgboost4j-flink_2.12</artifactId>
12-
<version>1.3.0</version>
12+
<version>1.3.1</version>
1313
<build>
1414
<plugins>
1515
<plugin>
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>ml.dmlc</groupId>
2828
<artifactId>xgboost4j_${scala.binary.version}</artifactId>
29-
<version>1.3.0</version>
29+
<version>1.3.1</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.apache.commons</groupId>

jvm-packages/xgboost4j-gpu/pom.xml

+2-2
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>1.3.0</version>
9+
<version>1.3.1</version>
1010
</parent>
1111
<artifactId>xgboost4j-gpu_2.12</artifactId>
12-
<version>1.3.0</version>
12+
<version>1.3.1</version>
1313
<packaging>jar</packaging>
1414

1515
<dependencies>

jvm-packages/xgboost4j-spark-gpu/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ml.dmlc</groupId>
88
<artifactId>xgboost-jvm_2.12</artifactId>
9-
<version>1.3.0</version>
9+
<version>1.3.1</version>
1010
</parent>
1111
<artifactId>xgboost4j-spark-gpu_2.12</artifactId>
1212
<build>
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>ml.dmlc</groupId>
2626
<artifactId>xgboost4j-gpu_${scala.binary.version}</artifactId>
27-
<version>1.3.0</version>
27+
<version>1.3.1</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.apache.spark</groupId>

jvm-packages/xgboost4j-spark/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ml.dmlc</groupId>
88
<artifactId>xgboost-jvm_2.12</artifactId>
9-
<version>1.3.0</version>
9+
<version>1.3.1</version>
1010
</parent>
1111
<artifactId>xgboost4j-spark_2.12</artifactId>
1212
<build>
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>ml.dmlc</groupId>
2626
<artifactId>xgboost4j_${scala.binary.version}</artifactId>
27-
<version>1.3.0</version>
27+
<version>1.3.1</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.apache.spark</groupId>

jvm-packages/xgboost4j/pom.xml

+2-2
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>1.3.0</version>
9+
<version>1.3.1</version>
1010
</parent>
1111
<artifactId>xgboost4j_2.12</artifactId>
12-
<version>1.3.0</version>
12+
<version>1.3.1</version>
1313
<packaging>jar</packaging>
1414

1515
<dependencies>

python-package/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def run(self):
301301
logging.basicConfig(level=logging.INFO)
302302
setup(name='xgboost',
303303
version=open(os.path.join(
304-
CURRENT_DIR, 'xgboost/VERSION')).read().strip() + '.post0',
304+
CURRENT_DIR, 'xgboost/VERSION')).read().strip(),
305305
description="XGBoost Python Package",
306306
long_description=open(os.path.join(CURRENT_DIR, 'README.rst'),
307307
encoding='utf-8').read(),

python-package/xgboost/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.3.1

0 commit comments

Comments
 (0)