From 3fe71947a9742f73a72047f40dcba131fc989ceb Mon Sep 17 00:00:00 2001 From: Veselin Dobrev Date: Tue, 22 Mar 2022 14:10:00 -0700 Subject: [PATCH] Update version numbers to 4.4.1 -- a new development version --- CHANGELOG | 4 ++++ CMakeLists.txt | 2 +- doc/CodeDocumentation.conf.in | 2 +- makefile | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 12baca1d1f..2537037b62 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -8,6 +8,10 @@ https://mfem.org +Version 4.4.1 (development) +=========================== + + Version 4.4, released on March 21, 2022 ======================================= diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b159ff605..21bbd43c0a 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 111740fa68..0fcfdba266 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 c0228dbccf..6d2fea5a5b 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$$//')