From dd58c2ac472b0aa442db63cb18d52379baba567f Mon Sep 17 00:00:00 2001 From: Jiaming Yuan Date: Fri, 6 Jan 2023 17:55:51 +0800 Subject: [PATCH] Bump version to 1.7.3. (#8646) --- CMakeLists.txt | 2 +- R-package/configure | 18 +++++++++--------- R-package/configure.ac | 2 +- include/xgboost/version_config.h | 2 +- jvm-packages/pom.xml | 2 +- jvm-packages/xgboost4j-example/pom.xml | 8 ++++---- jvm-packages/xgboost4j-flink/pom.xml | 6 +++--- jvm-packages/xgboost4j-gpu/pom.xml | 4 ++-- jvm-packages/xgboost4j-spark-gpu/pom.xml | 4 ++-- jvm-packages/xgboost4j-spark/pom.xml | 4 ++-- jvm-packages/xgboost4j/pom.xml | 4 ++-- python-package/xgboost/VERSION | 2 +- 12 files changed, 29 insertions(+), 29 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0509f18ed..089e8a2a4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR) -project(xgboost LANGUAGES CXX C VERSION 1.7.2) +project(xgboost LANGUAGES CXX C VERSION 1.7.3) include(cmake/Utils.cmake) list(APPEND CMAKE_MODULE_PATH "${xgboost_SOURCE_DIR}/cmake/modules") cmake_policy(SET CMP0022 NEW) diff --git a/R-package/configure b/R-package/configure index a89b42b24..f9d27803b 100755 --- a/R-package/configure +++ b/R-package/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for xgboost 1.7.2. +# Generated by GNU Autoconf 2.69 for xgboost 1.7.3. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. @@ -576,8 +576,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='xgboost' PACKAGE_TARNAME='xgboost' -PACKAGE_VERSION='1.7.2' -PACKAGE_STRING='xgboost 1.7.2' +PACKAGE_VERSION='1.7.3' +PACKAGE_STRING='xgboost 1.7.3' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1195,7 +1195,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures xgboost 1.7.2 to adapt to many kinds of systems. +\`configure' configures xgboost 1.7.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1257,7 +1257,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of xgboost 1.7.2:";; + short | recursive ) echo "Configuration of xgboost 1.7.3:";; esac cat <<\_ACEOF @@ -1336,7 +1336,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -xgboost configure 1.7.2 +xgboost configure 1.7.3 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1479,7 +1479,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by xgboost $as_me 1.7.2, which was +It was created by xgboost $as_me 1.7.3, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3294,7 +3294,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by xgboost $as_me 1.7.2, which was +This file was extended by xgboost $as_me 1.7.3, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -3347,7 +3347,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -xgboost config.status 1.7.2 +xgboost config.status 1.7.3 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/R-package/configure.ac b/R-package/configure.ac index d99e5b8da..e5d2396e2 100644 --- a/R-package/configure.ac +++ b/R-package/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.69) -AC_INIT([xgboost],[1.7.2],[],[xgboost],[]) +AC_INIT([xgboost],[1.7.3],[],[xgboost],[]) # Use this line to set CC variable to a C compiler AC_PROG_CC diff --git a/include/xgboost/version_config.h b/include/xgboost/version_config.h index 0e0bcb98e..68e748dae 100644 --- a/include/xgboost/version_config.h +++ b/include/xgboost/version_config.h @@ -6,6 +6,6 @@ #define XGBOOST_VER_MAJOR 1 #define XGBOOST_VER_MINOR 7 -#define XGBOOST_VER_PATCH 2 +#define XGBOOST_VER_PATCH 3 #endif // XGBOOST_VERSION_CONFIG_H_ diff --git a/jvm-packages/pom.xml b/jvm-packages/pom.xml index d18ba5301..81ada460d 100644 --- a/jvm-packages/pom.xml +++ b/jvm-packages/pom.xml @@ -6,7 +6,7 @@ ml.dmlc xgboost-jvm_2.12 - 1.7.2 + 1.7.3 pom XGBoost JVM Package JVM Package for XGBoost diff --git a/jvm-packages/xgboost4j-example/pom.xml b/jvm-packages/xgboost4j-example/pom.xml index bce7bd211..71a7f3ca8 100644 --- a/jvm-packages/xgboost4j-example/pom.xml +++ b/jvm-packages/xgboost4j-example/pom.xml @@ -6,10 +6,10 @@ ml.dmlc xgboost-jvm_2.12 - 1.7.2 + 1.7.3 xgboost4j-example_2.12 - 1.7.2 + 1.7.3 jar @@ -26,7 +26,7 @@ ml.dmlc xgboost4j-spark_${scala.binary.version} - 1.7.2 + 1.7.3 org.apache.spark @@ -37,7 +37,7 @@ ml.dmlc xgboost4j-flink_${scala.binary.version} - 1.7.2 + 1.7.3 org.apache.commons diff --git a/jvm-packages/xgboost4j-flink/pom.xml b/jvm-packages/xgboost4j-flink/pom.xml index dd210574d..8fb31cca0 100644 --- a/jvm-packages/xgboost4j-flink/pom.xml +++ b/jvm-packages/xgboost4j-flink/pom.xml @@ -6,10 +6,10 @@ ml.dmlc xgboost-jvm_2.12 - 1.7.2 + 1.7.3 xgboost4j-flink_2.12 - 1.7.2 + 1.7.3 @@ -26,7 +26,7 @@ ml.dmlc xgboost4j_${scala.binary.version} - 1.7.2 + 1.7.3 org.apache.commons diff --git a/jvm-packages/xgboost4j-gpu/pom.xml b/jvm-packages/xgboost4j-gpu/pom.xml index 813fdaa93..6d440e8a1 100644 --- a/jvm-packages/xgboost4j-gpu/pom.xml +++ b/jvm-packages/xgboost4j-gpu/pom.xml @@ -6,10 +6,10 @@ ml.dmlc xgboost-jvm_2.12 - 1.7.2 + 1.7.3 xgboost4j-gpu_2.12 - 1.7.2 + 1.7.3 jar diff --git a/jvm-packages/xgboost4j-spark-gpu/pom.xml b/jvm-packages/xgboost4j-spark-gpu/pom.xml index 0d42350c5..84fa5ad3d 100644 --- a/jvm-packages/xgboost4j-spark-gpu/pom.xml +++ b/jvm-packages/xgboost4j-spark-gpu/pom.xml @@ -6,7 +6,7 @@ ml.dmlc xgboost-jvm_2.12 - 1.7.2 + 1.7.3 xgboost4j-spark-gpu_2.12 @@ -24,7 +24,7 @@ ml.dmlc xgboost4j-gpu_${scala.binary.version} - 1.7.2 + 1.7.3 org.apache.spark diff --git a/jvm-packages/xgboost4j-spark/pom.xml b/jvm-packages/xgboost4j-spark/pom.xml index 48201dc48..f41e643cd 100644 --- a/jvm-packages/xgboost4j-spark/pom.xml +++ b/jvm-packages/xgboost4j-spark/pom.xml @@ -6,7 +6,7 @@ ml.dmlc xgboost-jvm_2.12 - 1.7.2 + 1.7.3 xgboost4j-spark_2.12 @@ -24,7 +24,7 @@ ml.dmlc xgboost4j_${scala.binary.version} - 1.7.2 + 1.7.3 org.apache.spark diff --git a/jvm-packages/xgboost4j/pom.xml b/jvm-packages/xgboost4j/pom.xml index 3300a0d37..9f2a2a869 100644 --- a/jvm-packages/xgboost4j/pom.xml +++ b/jvm-packages/xgboost4j/pom.xml @@ -6,10 +6,10 @@ ml.dmlc xgboost-jvm_2.12 - 1.7.2 + 1.7.3 xgboost4j_2.12 - 1.7.2 + 1.7.3 jar diff --git a/python-package/xgboost/VERSION b/python-package/xgboost/VERSION index f8a696c8d..661e7aead 100644 --- a/python-package/xgboost/VERSION +++ b/python-package/xgboost/VERSION @@ -1 +1 @@ -1.7.2 +1.7.3