diff --git a/CHANGELOG b/CHANGELOG index dc5af4e339..89124d468d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -8,6 +8,8 @@ https://mfem.org +Version 4.4.1 (development) +=========================== - Added support for parallel non-conforming, non-matching, variational, volumetric mesh information transfer using ParMoonolith (https://bitbucket.org/zulianp/par_moonolith). diff --git a/CMakeLists.txt b/CMakeLists.txt index 66f27637f7..44118ba8b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,7 +51,7 @@ project(mfem NONE) # Current version of MFEM, see also `makefile`. # mfem_VERSION = (string) # MFEM_VERSION = (int) [automatically derived from mfem_VERSION] -set(${PROJECT_NAME}_VERSION 4.4.0) +set(${PROJECT_NAME}_VERSION 4.4.1) # Prohibit in-source build if (${PROJECT_SOURCE_DIR} STREQUAL ${PROJECT_BINARY_DIR}) diff --git a/doc/CodeDocumentation.conf.in b/doc/CodeDocumentation.conf.in index c4243b79c9..d080c344c7 100644 --- a/doc/CodeDocumentation.conf.in +++ b/doc/CodeDocumentation.conf.in @@ -38,7 +38,7 @@ PROJECT_NAME = "MFEM" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v4.4.0 +PROJECT_NUMBER = v4.4.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/makefile b/makefile index aa14d7de29..0d9fa73d20 100644 --- a/makefile +++ b/makefile @@ -10,7 +10,7 @@ # CONTRIBUTING.md for details. # The current MFEM version as an integer, see also `CMakeLists.txt`. -MFEM_VERSION = 40400 +MFEM_VERSION = 40401 MFEM_VERSION_STRING = $(shell printf "%06d" $(MFEM_VERSION) | \ sed -e 's/^0*\(.*.\)\(..\)\(..\)$$/\1.\2.\3/' -e 's/\.0/./g' -e 's/\.0$$//')