Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version #696

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading