From 48ec78c4756eb4d81ed021b4af7e661f686ca8ad Mon Sep 17 00:00:00 2001 From: Jiwon Gim <55209567+boulderdaze@users.noreply.github.com> Date: Wed, 20 Mar 2024 13:44:36 -0600 Subject: [PATCH] Release v3.4.0 (#433) update the version --- CITATION.cff | 2 +- CMakeLists.txt | 2 +- docs/source/_static/switcher.json | 9 +++++++-- docs/source/conf.py | 2 +- include/micm/version.hpp | 6 +++--- 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 079778d54..0e909003a 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.3.1 +version: v3.4.0 doi: "10.5281/zenodo.10472189" authors: - family-names: Dawson diff --git a/CMakeLists.txt b/CMakeLists.txt index 71361cb2c..b7fc4e686 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.21) project( micm - VERSION 3.3.1 + VERSION 3.4.0 LANGUAGES CXX ) diff --git a/docs/source/_static/switcher.json b/docs/source/_static/switcher.json index 8b54e97cc..89009c7fe 100644 --- a/docs/source/_static/switcher.json +++ b/docs/source/_static/switcher.json @@ -1,7 +1,7 @@ [ { - "name": "v3.3.1 (stable)", - "version": "v3.3.1 (stable)", + "name": "v3.4.0 (stable)", + "version": "v3.4.0 (stable)", "url": "https://ncar.github.io/micm" }, { @@ -19,6 +19,11 @@ "version": "3.3.1", "url": "https://ncar.github.io/micm/versions/3.3.1" }, + { + "name": "v3.4.0", + "version": "3.4.0", + "url": "https://ncar.github.io/micm/versions/3.4.0" + }, { "name": "dev", "version": "dev", diff --git a/docs/source/conf.py b/docs/source/conf.py index fd1770c5d..9a187703c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ suffix = os.getenv("SWITCHER_SUFFIX", "") # the suffix is required. This is controlled by the dockerfile that builds the docs -release = f'v3.3.1{suffix}' +release = f'v3.4.0{suffix}' # -- General configuration --------------------------------------------------- diff --git a/include/micm/version.hpp b/include/micm/version.hpp index f46ec7d60..74451622d 100644 --- a/include/micm/version.hpp +++ b/include/micm/version.hpp @@ -8,7 +8,7 @@ extern "C" { const char* getMicmVersion() { - return "3.3.1"; + return "3.4.0"; } unsigned getMicmVersionMajor() { @@ -16,11 +16,11 @@ extern "C" { } unsigned getMicmVersionMinor() { - return 3+0; + return 4+0; } unsigned getMicmVersionPatch() { - return 1+0; + return 0+0; } unsigned getMicmVersionTweak() {