From 307fcebe9cfd17bdd29ffcf74173f0bb49da0165 Mon Sep 17 00:00:00 2001 From: Anton <100830759+antonwolfy@users.noreply.github.com> Date: Thu, 23 Feb 2023 12:29:10 +0100 Subject: [PATCH] Setting version to 0.11.1 (#1308) --- doc/conf.py | 2 +- dpnp/backend/CMakeLists.txt | 2 +- dpnp/backend/doc/Doxyfile | 2 +- dpnp/version.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 46505fa8f6d..999b2504bd6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -33,7 +33,7 @@ # The short X.Y version version = '0.11' # The full version, including alpha/beta/rc tags -release = '0.11.0' +release = '0.11.1' # -- General configuration --------------------------------------------------- diff --git a/dpnp/backend/CMakeLists.txt b/dpnp/backend/CMakeLists.txt index 52e9cb21985..baee709b11e 100644 --- a/dpnp/backend/CMakeLists.txt +++ b/dpnp/backend/CMakeLists.txt @@ -27,7 +27,7 @@ cmake_minimum_required(VERSION 3.10 FATAL_ERROR) -# set(DPNP_VERSION 0.11.0) +# set(DPNP_VERSION 0.11.1) # set(DPNP_API_VERSION 0.11) # set directory where the custom finders live diff --git a/dpnp/backend/doc/Doxyfile b/dpnp/backend/doc/Doxyfile index 6c83bb0e846..3d6c971a799 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.11.0 +PROJECT_NUMBER = 0.11.1 # 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 160e8ec963a..f09ea3c76a7 100644 --- a/dpnp/version.py +++ b/dpnp/version.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # ***************************************************************************** -# Copyright (c) 2016-2022, Intel Corporation +# Copyright (c) 2016-2023, Intel Corporation # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -29,6 +29,6 @@ DPNP version module """ -__version__: str = '0.11.0' +__version__: str = '0.11.1' version: str = __version__