diff --git a/CMakeLists.txt b/CMakeLists.txt index a88f3d5..519e508 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ include(FortnetUtils) fnet_ensure_out_of_source_build() fnet_load_build_settings() -set(FORTNET_VERSION "0.7") +set(FORTNET_VERSION "0.7.2") project(fortnet VERSION ${FORTNET_VERSION} LANGUAGES Fortran C) diff --git a/doc/recipes/docs/conf.py b/doc/recipes/docs/conf.py index d38989b..acaeff6 100644 --- a/doc/recipes/docs/conf.py +++ b/doc/recipes/docs/conf.py @@ -65,9 +65,9 @@ # built documents. # # The short X.Y version. -version = "0.7" +version = "0.7.2" # The full version, including alpha/beta/rc tags. -release = "0.7" +release = "0.7.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/prog/fortnet/lib_fortnet/initprogram.F90 b/prog/fortnet/lib_fortnet/initprogram.F90 index fe9076d..cc0fe9f 100644 --- a/prog/fortnet/lib_fortnet/initprogram.F90 +++ b/prog/fortnet/lib_fortnet/initprogram.F90 @@ -305,7 +305,7 @@ module fnet_initprogram !> program version - character(len=*), parameter :: version = '0.7' + character(len=*), parameter :: version = '0.7.2' !> copyright year integer, parameter :: copyrightYear = 2022 @@ -1622,7 +1622,7 @@ subroutine printFortnetHeader(release, year) write(stdOut, '(3A)') vBar, repeat(hBar, headerWidth - 2), vBar write(stdOut, '(5A)') vBar, ' Fortnet - A BPNN Implementation, Version ', trim(release),& - & repeat(' ', 32), vBar + & repeat(' ', 30), vBar write(stdOut, '(3A)') vBar, repeat(' ', headerWidth - 2), vBar write(stdOut, '(2A,I0,3A)') vBar, ' Copyright (C) 2020 - ', year,& & ' T. W. van der Heide', repeat(' ', 30), vBar