Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit f59ed47

Browse files
Update DML version from v1.1.2 to v1.2.0 (#363)
1 parent 3a7b179 commit f59ed47

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if (UNIX AND "${SANITIZE_THREADS}" STREQUAL "ON")
99
else ()
1010
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)
1111
endif ()
12-
project(DML VERSION 1.1.2 LANGUAGES C CXX)
12+
project(DML VERSION 1.2.0 LANGUAGES C CXX)
1313

1414
if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
1515
option(DML_RECORD_SWITCHES "Enables -frecord-gcc-switches flag" OFF)

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ PROJECT_NAME = "Intel DML Library"
4242
# could be handy for archiving the generated documentation or if some version
4343
# control system is used.
4444

45-
PROJECT_NUMBER = "v1.1.2"
45+
PROJECT_NUMBER = "v1.2.0"
4646

4747
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4848
# for a project that appears at the top of each page and should give viewer a

doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
project = 'Intel® DML'
2121
copyright = '2022, Intel'
2222
author = 'Intel'
23-
release = 'v1.1.2'
23+
release = 'v1.2.0'
2424

2525
# -- General configuration ---------------------------------------------------
2626

sources/c_api/dml_get_library_version.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
#define DML_LIBRARY_MAJOR_VERSION 1u
2020

2121
/** Minor version of the library*/
22-
#define DML_LIBRARY_MINOR_VERSION 1u
22+
#define DML_LIBRARY_MINOR_VERSION 2u
2323

2424
/** Minor version of the library*/
25-
#define DML_LIBRARY_PATCH 2u
25+
#define DML_LIBRARY_PATCH 0u
2626

2727
/** Supported CPU ISA */
2828
#define DML_LIBRARY_MINIMAL_CPU_ISA "N/A"

0 commit comments

Comments
 (0)