From 50e14f249e2c8fad3ae34f2267cbc171618b6fec Mon Sep 17 00:00:00 2001 From: Jiwon Gim Date: Thu, 19 Dec 2024 12:26:29 -0700 Subject: [PATCH] update version --- CITATION.cff | 2 +- CMakeLists.txt | 2 +- README.md | 2 +- docs/source/_static/switcher.json | 9 +++++++-- include/micm/version.hpp | 4 ++-- 5 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 3910e4adb..7a27e7366 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,7 +1,7 @@ cff-version: 1.2.0 message: If you use this software, please cite it as below. title: Model Independent Chemistry Model (MICM) -version: v3.6.0 +version: v3.7.0 doi: "10.5281/zenodo.10472189" authors: - family-names: Dawson diff --git a/CMakeLists.txt b/CMakeLists.txt index 64fb7e18e..c924c9d33 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.21) # project and version must be on the same line so that the docs can extract it -project(micm VERSION 3.6.0 LANGUAGES CXX) +project(micm VERSION 3.7.0 LANGUAGES CXX) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release" CACHE STRING diff --git a/README.md b/README.md index 8c41beb4e..03ee69289 100644 --- a/README.md +++ b/README.md @@ -183,7 +183,7 @@ int main(const int argc, const char *argv[]) To build and run the example using GNU (assuming the default install location): ``` -g++ -o foo_chem foo_chem.cpp -I/usr/local/micm-3.6.0/include -std=c++20 +g++ -o foo_chem foo_chem.cpp -I/usr/local/micm-3.7.0/include -std=c++20 ./foo_chem ``` diff --git a/docs/source/_static/switcher.json b/docs/source/_static/switcher.json index f8f613a7d..f59a0f990 100644 --- a/docs/source/_static/switcher.json +++ b/docs/source/_static/switcher.json @@ -1,7 +1,7 @@ [ { - "name": "v3.6.0 (stable)", - "version": "v3.6.0 (stable)", + "name": "v3.7.0 (stable)", + "version": "v3.7.0 (stable)", "url": "https://ncar.github.io/micm" }, { @@ -34,6 +34,11 @@ "version": "3.6.0", "url": "https://ncar.github.io/micm/versions/3.6.0" }, + { + "name": "v3.7.0", + "version": "3.7.0", + "url": "https://ncar.github.io/micm/versions/3.7.0" + }, { "name": "dev", "version": "dev", diff --git a/include/micm/version.hpp b/include/micm/version.hpp index ab33a2d99..3c6960abf 100644 --- a/include/micm/version.hpp +++ b/include/micm/version.hpp @@ -10,7 +10,7 @@ extern "C" { inline const char* GetMicmVersion() { - return "3.6.0"; + return "3.7.0"; } inline unsigned GetMicmVersionMajor() { @@ -18,7 +18,7 @@ extern "C" { } inline unsigned GetMicmVersionMinor() { - return 6+0; + return 7+0; } inline unsigned GetMicmVersionPatch() {