Skip to content

Commit

Permalink
Update version (#696)
Browse files Browse the repository at this point in the history
update version
  • Loading branch information
boulderdaze authored Dec 19, 2024
1 parent cdfd2e7 commit 8ba30c5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
9 changes: 7 additions & 2 deletions docs/source/_static/switcher.json
Original file line number Diff line number Diff line change
@@ -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"
},
{
Expand Down Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions include/micm/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ extern "C" {

inline const char* GetMicmVersion()
{
return "3.6.0";
return "3.7.0";
}
inline unsigned GetMicmVersionMajor()
{
return 3;
}
inline unsigned GetMicmVersionMinor()
{
return 6+0;
return 7+0;
}
inline unsigned GetMicmVersionPatch()
{
Expand Down

0 comments on commit 8ba30c5

Please sign in to comment.