diff --git a/README.md b/README.md index 628b5ee..9e3c1b5 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,10 @@ This may be useful if, for example, you do not have the third-party packages ins - See [*here*](visualstudio/README.md) for more details on how to build ga-aem using the Microsoft Visual Studio IDE. # Releases - +## v2.0.3-Release-20241114 +- Revert to Makefiles instead of CMmake for Python build on linux. Plus change to pyproject.toml inplace of setup.py. +## v2.0.2-Release-20240911 +- Catered for deprecation of PETSC_NULL from Petsc v3.19 onward. ## v2.0.1-Release-20240619 - Changed Pelton and ColeCole index for IP modelling in Matlab - Allowed line number in column index 0 for ctlinedata* programs diff --git a/python/pyproject.toml b/python/pyproject.toml index c8a692f..71f80c9 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "gatdaem1d" -version = "2.0.1" +version = "2.0.3" description = "Time-domain airborne electromagnetic forward modelling" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.10" diff --git a/src/gaaem_version.h b/src/gaaem_version.h index 1095c82..6f1b2dd 100644 --- a/src/gaaem_version.h +++ b/src/gaaem_version.h @@ -9,6 +9,6 @@ Author: Ross C. Brodie, Geoscience Australia. #ifndef _gaaem_version_H #define _gaaem_version_H -constexpr auto GAAEM_VERSION = "v2.0.2-Release-20240911"; +constexpr auto GAAEM_VERSION = "v2.0.3-Release-20241114"; #endif