Skip to content

Commit 534c940

Browse files
authored
Release 1.7.1 (#8413)
* Release 1.7.1 * Review comment
1 parent 5b76acc commit 534c940

File tree

12 files changed

+30
-30
lines changed

12 files changed

+30
-30
lines changed

CMakeLists.txt

+1-1
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 1.7.0)
2+
project(xgboost LANGUAGES CXX C VERSION 1.7.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

+2-2
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: 1.7.0.1
5-
Date: 2022-10-18
4+
Version: 1.7.1.1
5+
Date: 2022-11-03
66
Authors@R: c(
77
person("Tianqi", "Chen", role = c("aut"),
88
email = "[email protected]"),

R-package/configure

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for xgboost 1.7.0.
3+
# Generated by GNU Autoconf 2.69 for xgboost 1.7.1.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -576,8 +576,8 @@ MAKEFLAGS=
576576
# Identity of this package.
577577
PACKAGE_NAME='xgboost'
578578
PACKAGE_TARNAME='xgboost'
579-
PACKAGE_VERSION='1.7.0'
580-
PACKAGE_STRING='xgboost 1.7.0'
579+
PACKAGE_VERSION='1.7.1'
580+
PACKAGE_STRING='xgboost 1.7.1'
581581
PACKAGE_BUGREPORT=''
582582
PACKAGE_URL=''
583583

@@ -1195,7 +1195,7 @@ if test "$ac_init_help" = "long"; then
11951195
# Omit some internal or obsolete options to make the list less imposing.
11961196
# This message is too long to be a string in the A/UX 3.1 sh.
11971197
cat <<_ACEOF
1198-
\`configure' configures xgboost 1.7.0 to adapt to many kinds of systems.
1198+
\`configure' configures xgboost 1.7.1 to adapt to many kinds of systems.
11991199
12001200
Usage: $0 [OPTION]... [VAR=VALUE]...
12011201
@@ -1257,7 +1257,7 @@ fi
12571257

12581258
if test -n "$ac_init_help"; then
12591259
case $ac_init_help in
1260-
short | recursive ) echo "Configuration of xgboost 1.7.0:";;
1260+
short | recursive ) echo "Configuration of xgboost 1.7.1:";;
12611261
esac
12621262
cat <<\_ACEOF
12631263
@@ -1336,7 +1336,7 @@ fi
13361336
test -n "$ac_init_help" && exit $ac_status
13371337
if $ac_init_version; then
13381338
cat <<\_ACEOF
1339-
xgboost configure 1.7.0
1339+
xgboost configure 1.7.1
13401340
generated by GNU Autoconf 2.69
13411341
13421342
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1479,7 +1479,7 @@ cat >config.log <<_ACEOF
14791479
This file contains any messages produced by compilers while
14801480
running configure, to aid debugging if configure makes a mistake.
14811481
1482-
It was created by xgboost $as_me 1.7.0, which was
1482+
It was created by xgboost $as_me 1.7.1, which was
14831483
generated by GNU Autoconf 2.69. Invocation command line was
14841484
14851485
$ $0 $@
@@ -3294,7 +3294,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
32943294
# report actual input values of CONFIG_FILES etc. instead of their
32953295
# values after options handling.
32963296
ac_log="
3297-
This file was extended by xgboost $as_me 1.7.0, which was
3297+
This file was extended by xgboost $as_me 1.7.1, which was
32983298
generated by GNU Autoconf 2.69. Invocation command line was
32993299
33003300
CONFIG_FILES = $CONFIG_FILES
@@ -3347,7 +3347,7 @@ _ACEOF
33473347
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
33483348
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
33493349
ac_cs_version="\\
3350-
xgboost config.status 1.7.0
3350+
xgboost config.status 1.7.1
33513351
configured by $0, generated by GNU Autoconf 2.69,
33523352
with options \\"\$ac_cs_config\\"
33533353

R-package/configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
AC_PREREQ(2.69)
44

5-
AC_INIT([xgboost],[1.7.0],[],[xgboost],[])
5+
AC_INIT([xgboost],[1.7.1],[],[xgboost],[])
66

77
# Use this line to set CC variable to a C compiler
88
AC_PROG_CC

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.7.0</version>
9+
<version>1.7.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.7.0</version>
9+
<version>1.7.1</version>
1010
</parent>
1111
<artifactId>xgboost4j-example_2.12</artifactId>
12-
<version>1.7.0</version>
12+
<version>1.7.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.7.0</version>
29+
<version>1.7.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.7.0</version>
40+
<version>1.7.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.7.0</version>
9+
<version>1.7.1</version>
1010
</parent>
1111
<artifactId>xgboost4j-flink_2.12</artifactId>
12-
<version>1.7.0</version>
12+
<version>1.7.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.7.0</version>
29+
<version>1.7.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.7.0</version>
9+
<version>1.7.1</version>
1010
</parent>
1111
<artifactId>xgboost4j-gpu_2.12</artifactId>
12-
<version>1.7.0</version>
12+
<version>1.7.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.7.0</version>
9+
<version>1.7.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.7.0</version>
27+
<version>1.7.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.7.0</version>
9+
<version>1.7.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.7.0</version>
27+
<version>1.7.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.7.0</version>
9+
<version>1.7.1</version>
1010
</parent>
1111
<artifactId>xgboost4j_2.12</artifactId>
12-
<version>1.7.0</version>
12+
<version>1.7.1</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.7.0
1+
1.7.1

0 commit comments

Comments
 (0)