Skip to content

Commit 4708928

Browse files
committed
bump version to 6.0
1 parent 922afd4 commit 4708928

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

doc/magic_manual.pdf

-940 KB
Binary file not shown.

doc/sphinx/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,17 @@
5757

5858
# General information about the project.
5959
project = 'Magic'
60-
copyright = u'2020, Thomas Gastine, Johannes Wicht, Ankit Barik, Lùcia Duarte'
60+
copyright = u'2021, Thomas Gastine, Johannes Wicht, Ankit Barik, Lùcia Duarte'
6161
author = u'Thomas Gastine, Johannes Wicht, Ankit Barik, Lùcia Duarte'
6262

6363
# The version info for the project you're documenting, acts as replacement for
6464
# |version| and |release|, also used in various other places throughout the
6565
# built documents.
6666
#
6767
# The short X.Y version.
68-
version = '5.10'
68+
version = '6.0'
6969
# The full version, including alpha/beta/rc tags.
70-
release = '5.10'
70+
release = '6.0'
7171

7272
# The language for content autogenerated by Sphinx. Refer to documentation
7373
# for a list of supported languages.

src/constants.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ module constants
3838
real(cp), parameter :: cos36=cos(36.0_cp*pi/180.0_cp) ! :math:`\cos{36\pi/180}`
3939
real(cp), parameter :: cos72=cos(72.0_cp*pi/180.0_cp) ! :math:`\cos{72\pi/180}`
4040

41-
character(len=4), parameter :: codeVersion='5.10'
41+
character(len=4), parameter :: codeVersion='6.0'
4242

4343
end module constants

src/magic.f90

+6-6
Original file line numberDiff line numberDiff line change
@@ -250,12 +250,12 @@ program magic
250250
if ( rank == 0 ) then
251251
open(newunit=n_log_file, file=log_file, status='new')
252252

253-
write(n_log_file,*) '! __ __ _____ _____ _____ __ ___ '
254-
write(n_log_file,*) '! | \/ | |_ _/ ____| | ____/_ |/ _ \ '
255-
write(n_log_file,*) '! | \ / | __ _ __ _ | || | | |__ | | | | | '
256-
write(n_log_file,*) '! | |\/| |/ _` |/ _` | | || | |___ \ | | | | | '
257-
write(n_log_file,*) '! | | | | (_| | (_| |_| || |____ ___) || | |_| | '
258-
write(n_log_file,*) '! |_| |_|\__,_|\__, |_____\_____| |____(_)_|\___/ '
253+
write(n_log_file,*) '! __ __ _____ _____ __ ___ '
254+
write(n_log_file,*) '! | \/ | |_ _/ ____| / / / _ \ '
255+
write(n_log_file,*) '! | \ / | __ _ __ _ | || | / /_ | | | | '
256+
write(n_log_file,*) '! | |\/| |/ _` |/ _` | | || | | _ \| | | | '
257+
write(n_log_file,*) '! | | | | (_| | (_| |_| || |____ | (_) | |_| | '
258+
write(n_log_file,*) '! |_| |_|\__,_|\__, |_____\_____| \___(_)___/ '
259259
write(n_log_file,*) '! __/ | '
260260
write(n_log_file,*) '! |___/ '
261261
write(n_log_file,*) '! '

0 commit comments

Comments
 (0)