Skip to content

Commit

Permalink
bumping version
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Sep 26, 2024
1 parent 58ccf32 commit c756a3d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 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.5.0
version: v3.6.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.5.0 LANGUAGES CXX)
project(micm VERSION 3.6.0 LANGUAGES CXX)

if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING
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.5.0 (stable)",
"version": "v3.5.0 (stable)",
"name": "v3.6.0 (stable)",
"version": "v3.6.0 (stable)",
"url": "https://ncar.github.io/micm"
},
{
Expand Down Expand Up @@ -29,6 +29,11 @@
"version": "3.5.0",
"url": "https://ncar.github.io/micm/versions/3.5.0"
},
{
"name": "v3.6.0",
"version": "3.6.0",
"url": "https://ncar.github.io/micm/versions/3.6.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.5.0";
return "3.6.0";
}
inline unsigned GetMicmVersionMajor()
{
return 3;
}
inline unsigned GetMicmVersionMinor()
{
return 5+0;
return 6+0;
}
inline unsigned GetMicmVersionPatch()
{
Expand Down

0 comments on commit c756a3d

Please sign in to comment.