Skip to content

Commit

Permalink
Release Fortnet in version 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vanderhe committed Nov 10, 2022
1 parent 6b66576 commit 59bd5c1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions doc/recipes/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions prog/fortnet/lib_fortnet/initprogram.F90
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 59bd5c1

Please sign in to comment.