diff --git a/CHANGELOG.md b/CHANGELOG.md index 98cc789a9..1d39fa645 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ Add new entries a the bottom of the current list in the subheading. Item format: This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.0.0] ### Added - Added the ability to calculate the water content within the oceanic plate feature and the subducting plate feature. The implementation samples the temperature within the feature, calculates a lithostatic pressure, and determines the water content using parameterized phase diagrams for 4 different lithologies: sediment, mid ocean ridge basalt (MORB), gabbro, and peridotite from [Tian et al., 2019](https://doi.org/10.1029/2019GC008488). \[Daniel Douglas; 2024-08-20; [#661](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/661)\] - Added a `random uniform distribution deflected` grains model for all features that allows an initial texture computed from a random uniform distribution of rotation matrices applied to a given orientation specified as a set of Euler angles or a rotation matrix. \[Yijun Wang; 2024-06-06; [#713](https://github.com/GeodynamicWorldBuilder/WorldBuilder/pull/713)\] diff --git a/VERSION b/VERSION index bc83570d8..3eefcb9dd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0-pre +1.0.0 diff --git a/appveyor.yml b/appveyor.yml index 6e1562d0b..8f982c3e0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '1.0.0-pre.{build}' +version: '1.0.0.{build}' image: Visual Studio 2015 diff --git a/doc/doxygen_config.dox b/doc/doxygen_config.dox index c473e6006..2e450f74b 100644 --- a/doc/doxygen_config.dox +++ b/doc/doxygen_config.dox @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "World Builder" -PROJECT_NUMBER = 1.0.0-pre +PROJECT_NUMBER = 1.0.0 PROJECT_BRIEF = "A geodynamic initial conditions generator" PROJECT_LOGO = OUTPUT_DIRECTORY = doc/doxygen/ diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py index 17bcb759f..e607aebdb 100644 --- a/doc/sphinx/conf.py +++ b/doc/sphinx/conf.py @@ -20,8 +20,8 @@ project = 'Geodynamic World Builder' copyright = '2024, The authors of the Geodynamic World Builder' # The full version, including alpha/beta/rc tags -release = '1.0.0-pre' -html_title = "Manual GWB 1.0.0-pre" +release = '1.0.0' +html_title = "Manual GWB 1.0.0" # -- General configuration ---------------------------------------------------