diff --git a/.ci/env/apt.sh b/.ci/env/apt.sh index 9e3fcd9b69f..955cf2bccbf 100755 --- a/.ci/env/apt.sh +++ b/.ci/env/apt.sh @@ -64,16 +64,19 @@ function install_qemu_emulation_deb { set +e versions=(9.0.2 9.0.1 8.2.4) + suffixes=("" "~bpo12+1") found_version="" for version in ${versions[@]}; do - qemu_deb="qemu-user-static_${version}+ds-1_amd64.deb" - echo "Checking for http://ftp.debian.org/debian/pool/main/q/qemu/${qemu_deb}" - if wget -q --method=HEAD http://ftp.debian.org/debian/pool/main/q/qemu/${qemu_deb} &> /dev/null; - then - echo "Found qemu version ${version}" - found_version=${qemu_deb} - break - fi + for suffix in ${suffixes[@]}; do + qemu_deb="qemu-user-static_${version}+ds-1${suffix}_amd64.deb" + echo "Checking for http://ftp.debian.org/debian/pool/main/q/qemu/${qemu_deb}" + if wget -q --method=HEAD http://ftp.debian.org/debian/pool/main/q/qemu/${qemu_deb} &> /dev/null; + then + echo "Found qemu version ${version}" + found_version=${qemu_deb} + break 2 + fi + done done set -eo pipefail diff --git a/deploy/pkg-config/pkg-config.tpl b/deploy/pkg-config/pkg-config.tpl index 10029cdfe05..51ce70e5812 100755 --- a/deploy/pkg-config/pkg-config.tpl +++ b/deploy/pkg-config/pkg-config.tpl @@ -22,7 +22,7 @@ includedir=${{prefix}}/include #info Name: oneDAL Description: Intel(R) oneAPI Data Analytics Library -Version: 2024.7 +Version: 2025.0 URL: https://www.intel.com/content/www/us/en/developer/tools/oneapi/onedal.html #Link line Libs: {libs} diff --git a/dev/bazel/config/config.bzl b/dev/bazel/config/config.bzl index 625e40ad160..2af00b8a1e7 100644 --- a/dev/bazel/config/config.bzl +++ b/dev/bazel/config/config.bzl @@ -209,8 +209,8 @@ def _declare_onedal_config_impl(repo_ctx): Label("@onedal//dev/bazel/config:config.tpl.BUILD"), substitutions = { "%{auto_cpu}": auto_cpu, - "%{version_major}": "2024", - "%{version_minor}": "7", + "%{version_major}": "2025", + "%{version_minor}": "0", "%{version_update}": "0", "%{version_build}": utils.datestamp(repo_ctx), "%{version_buildrev}": "work", diff --git a/docs/doxygen/doxygen_conf_cpp.txt b/docs/doxygen/doxygen_conf_cpp.txt index 36589b71080..30d97052757 100644 --- a/docs/doxygen/doxygen_conf_cpp.txt +++ b/docs/doxygen/doxygen_conf_cpp.txt @@ -38,7 +38,7 @@ PROJECT_NAME = "C++ API Reference for Intel(R) oneAPI Data Analytics L # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "2024.7" +PROJECT_NUMBER = "2025.0" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/docs/doxygen/doxygen_conf_cpp_examples.txt b/docs/doxygen/doxygen_conf_cpp_examples.txt index f2134e45ed6..7a0b7727008 100644 --- a/docs/doxygen/doxygen_conf_cpp_examples.txt +++ b/docs/doxygen/doxygen_conf_cpp_examples.txt @@ -38,7 +38,7 @@ PROJECT_NAME = "C++ API Reference for Intel(R) oneAPI Data Analytics L # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "2024.7" +PROJECT_NUMBER = "2025.0" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/docs/doxygen/doxygen_conf_cpp_web.txt b/docs/doxygen/doxygen_conf_cpp_web.txt index c0cbc676605..11b6cd85f27 100644 --- a/docs/doxygen/doxygen_conf_cpp_web.txt +++ b/docs/doxygen/doxygen_conf_cpp_web.txt @@ -38,7 +38,7 @@ PROJECT_NAME = "C++ API Reference for Intel(R) oneAPI Data Analytics L # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "2024.7" +PROJECT_NUMBER = "2025.0" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/makefile.ver b/makefile.ver index 9ffe0b05dc5..4fbdbd9c3db 100644 --- a/makefile.ver +++ b/makefile.ver @@ -14,8 +14,8 @@ # limitations under the License. #=============================================================================== -MAJOR = 2024 -MINOR = 7 +MAJOR = 2025 +MINOR = 0 UPDATE = 0 BUILD = $(shell date +'%Y%m%d') STATUS = P