From 3fd56868ab4e1481d85450b48f7bb37ce4fb9ec1 Mon Sep 17 00:00:00 2001 From: Alexander-Makaryev Date: Thu, 24 Feb 2022 14:16:30 -0600 Subject: [PATCH] Updating version to 0.10.0 --- doc/conf.py | 4 ++-- dpnp/backend/CMakeLists.txt | 4 ++-- dpnp/backend/doc/Doxyfile | 2 +- dpnp/version.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index df57ae3633ac..c6a05cdf6fc2 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -31,9 +31,9 @@ author = 'Intel' # The short X.Y version -version = '0.9' +version = '0.10' # The full version, including alpha/beta/rc tags -release = '0.9.0' +release = '0.10.0' # -- General configuration --------------------------------------------------- diff --git a/dpnp/backend/CMakeLists.txt b/dpnp/backend/CMakeLists.txt index 68967691ba69..81f073cee3c3 100644 --- a/dpnp/backend/CMakeLists.txt +++ b/dpnp/backend/CMakeLists.txt @@ -27,8 +27,8 @@ cmake_minimum_required(VERSION 3.10 FATAL_ERROR) -# set(DPNP_VERSION 0.9.0) -# set(DPNP_API_VERSION 0.9) +# set(DPNP_VERSION 0.10.0) +# set(DPNP_API_VERSION 0.10) # set directory where the custom finders live set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules") diff --git a/dpnp/backend/doc/Doxyfile b/dpnp/backend/doc/Doxyfile index 9c5740babb4c..97c331e4f24a 100644 --- a/dpnp/backend/doc/Doxyfile +++ b/dpnp/backend/doc/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "DPNP C++ backend kernel library" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.9.0 +PROJECT_NUMBER = 0.10.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/dpnp/version.py b/dpnp/version.py index b4f7ed7e0962..5c2bf3ecce64 100644 --- a/dpnp/version.py +++ b/dpnp/version.py @@ -29,6 +29,6 @@ DPNP version module """ -__version__: str = '0.9.0' +__version__: str = '0.10.0' version: str = __version__