diff --git a/CMakeLists.txt b/CMakeLists.txt index fbf75420..42864ee9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,7 @@ list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules) set(VERSION_MAJOR 3) set(VERSION_API 13) set(VERSION_ABI 0) -set(VERSION_PATCH git) +set(VERSION_PATCH 0) cmake_policy(SET CMP0011 NEW) diff --git a/docs/source/conf.py b/docs/source/conf.py index 8f59b915..f8920c6a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '3.13.0-git' +release = '3.13.0' # -- General configuration --------------------------------------------------- diff --git a/python/__init__.py b/python/__init__.py index 5753a23b..573fd531 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -19,7 +19,7 @@ ad-hoc protocols used in other satellites. """ -__version__ = 'v3.13.0-git' +__version__ = 'v3.13.0' __author__ = 'Daniel Estevez' __copyright__ = 'Copyright 2016-2022 Daniel Estevez' __email__ = 'daniel@destevez.net'