Skip to content

Commit 522b897

Browse files
authored
Make 1.4.2 patch release. (#6962)
1 parent 8147d78 commit 522b897

File tree

12 files changed

+23
-21
lines changed

12 files changed

+23
-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.4.1)
2+
project(xgboost LANGUAGES CXX C VERSION 1.4.2)
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.4.1.1
4+
Version: 1.4.2.1
55
Date: 2020-08-28
66
Authors@R: c(
77
person("Tianqi", "Chen", role = c("aut"),

dev/release-pypi.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def download_wheels(
4949
dir_URL: str,
5050
src_filename_prefix: str,
5151
target_filename_prefix: str,
52-
) -> None:
52+
) -> List[str]:
5353
"""Download all binary wheels. dir_URL is the URL for remote directory storing the release
5454
wheels
5555
@@ -72,6 +72,8 @@ def download_wheels(
7272
assert stderr.find("warning") == -1, "Unresolved warnings:\n" + stderr
7373
assert stdout.find("warning") == -1, "Unresolved warnings:\n" + stdout
7474

75+
return filenames
76+
7577

7678
def check_path():
7779
root = os.path.abspath(os.path.curdir)

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 4
9-
#define XGBOOST_VER_PATCH 1
9+
#define XGBOOST_VER_PATCH 2
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.4.1</version>
9+
<version>1.4.2</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.4.1</version>
9+
<version>1.4.2</version>
1010
</parent>
1111
<artifactId>xgboost4j-example_2.12</artifactId>
12-
<version>1.4.1</version>
12+
<version>1.4.2</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.4.1</version>
29+
<version>1.4.2</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.4.1</version>
40+
<version>1.4.2</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.4.1</version>
9+
<version>1.4.2</version>
1010
</parent>
1111
<artifactId>xgboost4j-flink_2.12</artifactId>
12-
<version>1.4.1</version>
12+
<version>1.4.2</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.4.1</version>
29+
<version>1.4.2</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.4.1</version>
9+
<version>1.4.2</version>
1010
</parent>
1111
<artifactId>xgboost4j-gpu_2.12</artifactId>
12-
<version>1.4.1</version>
12+
<version>1.4.2</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.4.1</version>
9+
<version>1.4.2</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.4.1</version>
27+
<version>1.4.2</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.4.1</version>
9+
<version>1.4.2</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.4.1</version>
27+
<version>1.4.2</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.4.1</version>
9+
<version>1.4.2</version>
1010
</parent>
1111
<artifactId>xgboost4j_2.12</artifactId>
12-
<version>1.4.1</version>
12+
<version>1.4.2</version>
1313
<packaging>jar</packaging>
1414

1515
<dependencies>

python-package/xgboost/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.1
1+
1.4.2

0 commit comments

Comments
 (0)