Skip to content

Updated versions #1455

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,12 @@ b0cd5f85c9b0c2705359fee3a3f4f3feda53bfa0

# Add clang-format to pre-commit config
ae755b57a9aeeb09435594aa7f6a04bf4cdc55fa

# Add isort to pre-commit config
3f202cf778cc47698310f2d040e5f83bdf2a90da

# Add flake8 to pre-commit config
c106d91b866f4acd30226b68519b12a73a881490

# Add pygrep-hooks to pre-commit config
e62718415aa3660da5f607e352c991a063a54219
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# The short X.Y version
version = "0.12"
# The full version, including alpha/beta/rc tags
release = "0.12.0"
release = "0.12.1dev0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion dpnp/backend/doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.0
PROJECT_NUMBER = 0.12.1dev0

# 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
Expand Down
2 changes: 1 addition & 1 deletion dpnp/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
DPNP version module
"""

__version__: str = "0.12.0"
__version__: str = "0.12.1dev0"

version: str = __version__