Skip to content

Commit 44d9115

Browse files
authored
Merge pull request #499 from MFraters/release_0.5.0
Release 0.5.0
2 parents ff51814 + 0709054 commit 44d9115

File tree

15 files changed

+39
-26
lines changed

15 files changed

+39
-26
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Add new entries a the bottom of the current list in the subheading. Item format:
99

1010
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1111

12-
## [Unreleased]
12+
## [0.5.0]
1313
### Added
1414
- The World Builder Visualizer can now compress vtu files with zlib and output in binary through the vtu11 library. ASCII output is still available. \[Menno Fraters; 2021-06-26; [#282](github.com/GeodynamicWorldBuilder/WorldBuilder/pull/282)\]
1515
- The option to use a half space cooling model for the temperature of an oceanic plate has been added to the oceanic plate feature. \[Magali Billen; 2021-07-15; [#317](github.com/GeodynamicWorldBuilder/WorldBuilder/pull/317)\]

CITATION

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ JOURNAL = {Solid Earth},
55
VOLUME = {10},
66
YEAR = {2019},
77
NUMBER = {5},
8-
PAGES = {1785--1807},
8+
PAGES = {1785\-\-1807},
99
URL = {https://se.copernicus.org/articles/10/1785/2019/},
1010
DOI = {10.5194/se-10-1785-2019}
1111
}
@@ -16,7 +16,17 @@ DOI = {10.5194/se-10-1785-2019}
1616
others},
1717
month = jun,
1818
year = 2021,
19-
DOI = {10.5281/zenodo.5014808]},
20-
URL = {https://doi.org/10.5281/zenodo.5014808]},
19+
DOI = {10.5281/zenodo.5014808},
20+
URL = {https://doi.org/10.5281/zenodo.5014808},
21+
}
22+
23+
@misc{gwb-doi-v0.5.0,
24+
title = {{The Geodynamic World Builder} v0.5.0 [software]},
25+
author = {Menno Fraters and
26+
others},
27+
month = jun,
28+
year = 2021,
29+
DOI = {10.5281/zenodo.7998525},
30+
URL = {https://doi.org/10.5281/zenodo.7998525},
2131
}
2232

CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ cmake_minimum_required (VERSION 2.8.12)
22

33
project(WorldBuilder C CXX)
44

5+
set(CMAKE_CXX_STANDARD 14)
6+
set(CMAKE_CXX_STANDARD_REQUIRED ON)
7+
58
# SWIG: use standard target name.
69
if(POLICY CMP0078)
710
cmake_policy(SET CMP0078 NEW)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For more information see the [GWB site](https://geodynamicworldbuilder.github.io
2121

2222
## Frequently Asked Questions (FAQ)
2323
### What are the minimum requirements to compile the library and tools?
24-
For GWB version 0.4.0 only a C++11 compiler and CMake version higher than 2.8.12 are required to compile the library tools. From GWB version 0.5.0 C++14 has become the new minimum c++ version. The new minimum CMake version for version 0.5.0 has not been decided on yet and remains for now version 2.8.12. Note that for some optional features (such as certain wrappers and unity build) a higher version of CMake and other dependencies may be needed (e.g. a Fortran compiler to compile the Fortran wrapper).
24+
For GWB version 0.5.0 only a C++14 compiler and CMake version higher than 2.8.12 are required to compile the library tools. Note that for some optional features (such as certain wrappers and unity build) a higher version of CMake and other dependencies may be needed (e.g. a Fortran compiler to compile the Fortran wrapper).
2525
### What do I do when I have a question or want to request a feature?
2626
If you have a question about the code and you can not find the answer easily in the documentation or the question is already raised as an [issue](https://github.com/GeodynamicWorldBuilder/WorldBuilder/issues), please let us know by opening an [issue on github](https://github.com/GeodynamicWorldBuilder/WorldBuilder/issues/new). This is also the preferred method for asking for new features for GWB.
2727

@@ -36,9 +36,9 @@ The developers of the Geodynamic World Builder request that you cite the followi
3636

3737
Fraters, M., Thieulot, C., van den Berg, A., and Spakman, W.: The Geodynamic World Builder: a solution for complex initial conditions in numerical modelling, Solid Earth, [https://doi.org/10.5194/se-10-1785-2019](https://doi.org/10.5194/se-10-1785-2019), 2019.
3838

39-
And cite the specific version of the software used. Version 0.4.0 can be cited as:
39+
And cite the specific version of the software used. Version 0.5.0 can be cited as:
4040

41-
Menno Fraters and others. 2021, June 22. The Geodynamic World Builder v0.4.0. Zenodo. [https://doi.org/10.5281/zenodo.5014808](https://doi.org/10.5281/zenodo.5014808).
41+
Menno Fraters and others. 2021, June 22. The Geodynamic World Builder v0.5.0. Zenodo. [https://doi.org/10.5281/zenodo.7998525](https://doi.org/10.5281/zenodo.7998525).
4242

4343
### How can I follow the progress of this project?
4444
There are multiple ways in which you can follow this project:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0-pre
1+
0.5.0

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '0.5.0-pre.{build}'
1+
version: '0.5.0.{build}'
22

33
image: Visual Studio 2015
44

doc/doxygen_config.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#---------------------------------------------------------------------------
66
DOXYFILE_ENCODING = UTF-8
77
PROJECT_NAME = "World Builder"
8-
PROJECT_NUMBER = 0.5.0-pre
8+
PROJECT_NUMBER = 0.5.0
99
PROJECT_BRIEF = "A geodynamic initial conditions generator"
1010
PROJECT_LOGO =
1111
OUTPUT_DIRECTORY = doc/doxygen/

doc/manual/manual.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ \section{Citing the world builder}
165165

166166
\noindent Fraters, M., Thieulot, C., van den Berg, A., and Spakman, W.: The Geodynamic World Builder: a solution for complex initial conditions in numerical modelling, Solid Earth., 10, 1785–1807, \url{https://doi.org/10.5194/se-10-1785-2019}, 2019.\\
167167

168-
\noindent And cite the specific version of the software used. Version 0.4.0 can be cited as:\\
168+
\noindent And cite the specific version of the software used. Version 0.5.0 can be cited as:\\
169169

170-
\noindent Menno Fraters and others. 2021, Jule 22. The Geodynamic World Builder v0.4.0. Zenodo. \url{https://doi.org/10.5281/zenodo.5014808}.
170+
\noindent Menno Fraters and others. 2021, Jule 22. The Geodynamic World Builder v0.5.0. Zenodo. \url{https://doi.org/10.5281/zenodo.7998525}.
171171

172172

173173
\section{Acknowledgments}

doc/sphinx/_static/paraview_state_files/BST_2D.pvsm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17647,11 +17647,11 @@
1764717647
</Proxy>
1764817648
<Proxy group="sources" type="XMLUnstructuredGridReader" id="7113" servers="1">
1764917649
<Property name="FileName" id="7113.FileName" number_of_elements="1">
17650-
<Element index="0" value="/home/m/programming/world-builder/WorldBuilder/build-rl/BST_16_2D_models.vtu"/>
17650+
<Element index="0" value="/home/username/world-builder/WorldBuilder/build/BST_16_2D_models.vtu"/>
1765117651
<Domain name="files" id="7113.FileName.files"/>
1765217652
</Property>
1765317653
<Property name="FileNameInfo" id="7113.FileNameInfo" number_of_elements="1">
17654-
<Element index="0" value="/home/m/programming/world-builder/WorldBuilder/build-rl/BST_16_2D_models.vtu"/>
17654+
<Element index="0" value="/home/username/world-builder/WorldBuilder/build/BST_16_2D_models.vtu"/>
1765517655
</Property>
1765617656
<Property name="TimestepValues" id="7113.TimestepValues"/>
1765717657
<Property name="CellArrayInfo" id="7113.CellArrayInfo"/>

doc/sphinx/_static/paraview_state_files/BST_spherical.pvsm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17520,11 +17520,11 @@
1752017520
</Proxy>
1752117521
<Proxy group="sources" type="XMLUnstructuredGridReader" id="7425" servers="1">
1752217522
<Property name="FileName" id="7425.FileName" number_of_elements="1">
17523-
<Element index="0" value="/home/m/programming/world-builder/WorldBuilder/build-rl/BST_17_spherical_models.vtu"/>
17523+
<Element index="0" value="/home/username/world-builder/WorldBuilder/build/BST_17_spherical_models.vtu"/>
1752417524
<Domain name="files" id="7425.FileName.files"/>
1752517525
</Property>
1752617526
<Property name="FileNameInfo" id="7425.FileNameInfo" number_of_elements="1">
17527-
<Element index="0" value="/home/m/programming/world-builder/WorldBuilder/build-rl/BST_17_spherical_models.vtu"/>
17527+
<Element index="0" value="/home/username/world-builder/WorldBuilder/build/BST_17_spherical_models.vtu"/>
1752817528
</Property>
1752917529
<Property name="TimestepValues" id="7425.TimestepValues"/>
1753017530
<Property name="CellArrayInfo" id="7425.CellArrayInfo"/>

0 commit comments

Comments
 (0)