From 5446b049cea2535ce1155c49e35c4680efef1530 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1lint=20Aradi?= Date: Mon, 2 May 2022 17:13:17 +0200 Subject: [PATCH] Bump version number, fix version bumper --- CHANGELOG.rst | 13 +++++++++++++ VERSION | 2 +- doc/doxygen/Doxyfile | 2 +- doc/sphinx/conf.py | 4 ++-- utils/srcmanip/set_version | 4 ++++ 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cac490b..7913ac3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,19 @@ Change Log Notable project changes in various releases. +1.3 +=== + +Added +------ + +* Grid splitting based on type (e.g. MPI_COMM_TYPE_SHARED) + +* Wrappers for accessing MPI shared memory window + +* Some tests accessible via ctest + + 1.2 === diff --git a/VERSION b/VERSION index 26aaba0..f0bb29e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.0 +1.3.0 diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index 0439a1e..bd83227 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -32,7 +32,7 @@ PROJECT_NAME = "MpiFx" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = "1.2.0" +PROJECT_NUMBER = "1.3.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 diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py index 4ec24c2..9df2efe 100644 --- a/doc/sphinx/conf.py +++ b/doc/sphinx/conf.py @@ -45,10 +45,10 @@ # built documents. # # The short X.Y version. -version = '1.2' +version = '1.3' # The full version, including alpha/beta/rc tags. -release = '1.2.0' +release = '1.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/utils/srcmanip/set_version b/utils/srcmanip/set_version index 00be0d0..b5247c6 100755 --- a/utils/srcmanip/set_version +++ b/utils/srcmanip/set_version @@ -15,6 +15,10 @@ _VERSION_PATTERN = r'\d+\.\d+(?:\.\d+)?(?:-\w+)?' _FILES_AND_PATTERNS = [ # + ('VERSION', + r'{}'.format(_VERSION_PATTERN), + r'{version}'), + # ('doc/doxygen/Doxyfile', r'^PROJECT_NUMBER\s*=\s*([\'"]){}\1\s*$'.format(_VERSION_PATTERN), 'PROJECT_NUMBER = "{version}"\n'),