Skip to content

Commit

Permalink
bump version to 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgastine committed Mar 9, 2021
1 parent 922afd4 commit 4708928
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Binary file modified doc/magic_manual.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions doc/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@

# General information about the project.
project = 'Magic'
copyright = u'2020, Thomas Gastine, Johannes Wicht, Ankit Barik, Lùcia Duarte'
copyright = u'2021, Thomas Gastine, Johannes Wicht, Ankit Barik, Lùcia Duarte'
author = u'Thomas Gastine, Johannes Wicht, Ankit Barik, Lùcia Duarte'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '5.10'
version = '6.0'
# The full version, including alpha/beta/rc tags.
release = '5.10'
release = '6.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/constants.f90
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ module constants
real(cp), parameter :: cos36=cos(36.0_cp*pi/180.0_cp) ! :math:`\cos{36\pi/180}`
real(cp), parameter :: cos72=cos(72.0_cp*pi/180.0_cp) ! :math:`\cos{72\pi/180}`

character(len=4), parameter :: codeVersion='5.10'
character(len=4), parameter :: codeVersion='6.0'

end module constants
12 changes: 6 additions & 6 deletions src/magic.f90
Original file line number Diff line number Diff line change
Expand Up @@ -250,12 +250,12 @@ program magic
if ( rank == 0 ) then
open(newunit=n_log_file, file=log_file, status='new')

write(n_log_file,*) '! __ __ _____ _____ _____ __ ___ '
write(n_log_file,*) '! | \/ | |_ _/ ____| | ____/_ |/ _ \ '
write(n_log_file,*) '! | \ / | __ _ __ _ | || | | |__ | | | | | '
write(n_log_file,*) '! | |\/| |/ _` |/ _` | | || | |___ \ | | | | | '
write(n_log_file,*) '! | | | | (_| | (_| |_| || |____ ___) || | |_| | '
write(n_log_file,*) '! |_| |_|\__,_|\__, |_____\_____| |____(_)_|\___/ '
write(n_log_file,*) '! __ __ _____ _____ __ ___ '
write(n_log_file,*) '! | \/ | |_ _/ ____| / / / _ \ '
write(n_log_file,*) '! | \ / | __ _ __ _ | || | / /_ | | | | '
write(n_log_file,*) '! | |\/| |/ _` |/ _` | | || | | _ \| | | | '
write(n_log_file,*) '! | | | | (_| | (_| |_| || |____ | (_) | |_| | '
write(n_log_file,*) '! |_| |_|\__,_|\__, |_____\_____| \___(_)___/ '
write(n_log_file,*) '! __/ | '
write(n_log_file,*) '! |___/ '
write(n_log_file,*) '! '
Expand Down

0 comments on commit 4708928

Please sign in to comment.