Skip to content

Commit 62e7923

Browse files
authored
Bump version to 2.1.4 (#11208)
1 parent b8cfb56 commit 62e7923

File tree

14 files changed

+27
-27
lines changed

14 files changed

+27
-27
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if(PLUGIN_SYCL)
66
string(REPLACE " -isystem ${CONDA_PREFIX}/include" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
77
endif()
88

9-
project(xgboost LANGUAGES CXX C VERSION 2.1.3)
9+
project(xgboost LANGUAGES CXX C VERSION 2.1.4)
1010
include(cmake/Utils.cmake)
1111
list(APPEND CMAKE_MODULE_PATH "${xgboost_SOURCE_DIR}/cmake/modules")
1212

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: 2.1.3.1
5-
Date: 2024-11-26
4+
Version: 2.1.4.1
5+
Date: 2025-02-06
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.71 for xgboost 2.1.3.
3+
# Generated by GNU Autoconf 2.71 for xgboost 2.1.4.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
@@ -607,8 +607,8 @@ MAKEFLAGS=
607607
# Identity of this package.
608608
PACKAGE_NAME='xgboost'
609609
PACKAGE_TARNAME='xgboost'
610-
PACKAGE_VERSION='2.1.3'
611-
PACKAGE_STRING='xgboost 2.1.3'
610+
PACKAGE_VERSION='2.1.4'
611+
PACKAGE_STRING='xgboost 2.1.4'
612612
PACKAGE_BUGREPORT=''
613613
PACKAGE_URL=''
614614

@@ -1259,7 +1259,7 @@ if test "$ac_init_help" = "long"; then
12591259
# Omit some internal or obsolete options to make the list less imposing.
12601260
# This message is too long to be a string in the A/UX 3.1 sh.
12611261
cat <<_ACEOF
1262-
\`configure' configures xgboost 2.1.3 to adapt to many kinds of systems.
1262+
\`configure' configures xgboost 2.1.4 to adapt to many kinds of systems.
12631263
12641264
Usage: $0 [OPTION]... [VAR=VALUE]...
12651265
@@ -1321,7 +1321,7 @@ fi
13211321

13221322
if test -n "$ac_init_help"; then
13231323
case $ac_init_help in
1324-
short | recursive ) echo "Configuration of xgboost 2.1.3:";;
1324+
short | recursive ) echo "Configuration of xgboost 2.1.4:";;
13251325
esac
13261326
cat <<\_ACEOF
13271327
@@ -1404,7 +1404,7 @@ fi
14041404
test -n "$ac_init_help" && exit $ac_status
14051405
if $ac_init_version; then
14061406
cat <<\_ACEOF
1407-
xgboost configure 2.1.3
1407+
xgboost configure 2.1.4
14081408
generated by GNU Autoconf 2.71
14091409
14101410
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -1603,7 +1603,7 @@ cat >config.log <<_ACEOF
16031603
This file contains any messages produced by compilers while
16041604
running configure, to aid debugging if configure makes a mistake.
16051605
1606-
It was created by xgboost $as_me 2.1.3, which was
1606+
It was created by xgboost $as_me 2.1.4, which was
16071607
generated by GNU Autoconf 2.71. Invocation command line was
16081608
16091609
$ $0$ac_configure_args_raw
@@ -3709,7 +3709,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
37093709
# report actual input values of CONFIG_FILES etc. instead of their
37103710
# values after options handling.
37113711
ac_log="
3712-
This file was extended by xgboost $as_me 2.1.3, which was
3712+
This file was extended by xgboost $as_me 2.1.4, which was
37133713
generated by GNU Autoconf 2.71. Invocation command line was
37143714
37153715
CONFIG_FILES = $CONFIG_FILES
@@ -3773,7 +3773,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
37733773
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
37743774
ac_cs_config='$ac_cs_config_escaped'
37753775
ac_cs_version="\\
3776-
xgboost config.status 2.1.3
3776+
xgboost config.status 2.1.4
37773777
configured by $0, generated by GNU Autoconf 2.71,
37783778
with options \\"\$ac_cs_config\\"
37793779

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],[2.1.3],[],[xgboost],[])
5+
AC_INIT([xgboost],[2.1.4],[],[xgboost],[])
66

77
: ${R_HOME=`R RHOME`}
88
if test -z "${R_HOME}"; then

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 2 /* NOLINT */
88
#define XGBOOST_VER_MINOR 1 /* NOLINT */
9-
#define XGBOOST_VER_PATCH 3 /* NOLINT */
9+
#define XGBOOST_VER_PATCH 4 /* NOLINT */
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>2.1.3</version>
9+
<version>2.1.4</version>
1010
<packaging>pom</packaging>
1111
<name>XGBoost JVM Package</name>
1212
<description>JVM Package for XGBoost</description>

jvm-packages/xgboost4j-example/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>ml.dmlc</groupId>
88
<artifactId>xgboost-jvm_2.12</artifactId>
9-
<version>2.1.3</version>
9+
<version>2.1.4</version>
1010
</parent>
1111
<name>xgboost4j-example</name>
1212
<artifactId>xgboost4j-example_2.12</artifactId>
13-
<version>2.1.3</version>
13+
<version>2.1.4</version>
1414
<packaging>jar</packaging>
1515
<build>
1616
<plugins>

jvm-packages/xgboost4j-flink/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>ml.dmlc</groupId>
88
<artifactId>xgboost-jvm_2.12</artifactId>
9-
<version>2.1.3</version>
9+
<version>2.1.4</version>
1010
</parent>
1111

1212
<name>xgboost4j-flink</name>
1313
<artifactId>xgboost4j-flink_2.12</artifactId>
14-
<version>2.1.3</version>
14+
<version>2.1.4</version>
1515
<properties>
1616
<flink-ml.version>2.2.0</flink-ml.version>
1717
</properties>

jvm-packages/xgboost4j-gpu/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>ml.dmlc</groupId>
88
<artifactId>xgboost-jvm_2.12</artifactId>
9-
<version>2.1.3</version>
9+
<version>2.1.4</version>
1010
</parent>
1111
<artifactId>xgboost4j-gpu_2.12</artifactId>
1212
<name>xgboost4j-gpu</name>
13-
<version>2.1.3</version>
13+
<version>2.1.4</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

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

+1-1
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>2.1.3</version>
9+
<version>2.1.4</version>
1010
</parent>
1111
<name>xgboost4j-spark-gpu</name>
1212
<artifactId>xgboost4j-spark-gpu_2.12</artifactId>

jvm-packages/xgboost4j-spark/pom.xml

+1-1
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>2.1.3</version>
9+
<version>2.1.4</version>
1010
</parent>
1111
<name>xgboost4j-spark</name>
1212
<artifactId>xgboost4j-spark_2.12</artifactId>

jvm-packages/xgboost4j/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>ml.dmlc</groupId>
88
<artifactId>xgboost-jvm_2.12</artifactId>
9-
<version>2.1.3</version>
9+
<version>2.1.4</version>
1010
</parent>
1111
<name>xgboost4j</name>
1212
<artifactId>xgboost4j_2.12</artifactId>
13-
<version>2.1.3</version>
13+
<version>2.1.4</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

python-package/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ authors = [
1414
{ name = "Hyunsu Cho", email = "[email protected]" },
1515
{ name = "Jiaming Yuan", email = "[email protected]" }
1616
]
17-
version = "2.1.3"
17+
version = "2.1.4"
1818
requires-python = ">=3.8"
1919
license = { text = "Apache-2.0" }
2020
classifiers = [

python-package/xgboost/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.3
1+
2.1.4

0 commit comments

Comments
 (0)