Skip to content

Commit cc68545

Browse files
authored
Update the version to 3.11.0 (#885)
update the minor version
1 parent 505a16b commit cc68545

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cff-version: 1.2.0
22
message: If you use this software, please cite it as below.
33
title: Model Independent Chemistry Module (MICM)
4-
version: v3.10.0
4+
version: v3.11.0
55
doi: "10.5281/zenodo.10472189"
66
authors:
77
- family-names: Dawson

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cmake_minimum_required(VERSION 3.21)
44

55
# project and version must be on the same line so that the docs can extract it
6-
project(micm VERSION 3.10.0 LANGUAGES CXX)
6+
project(micm VERSION 3.11.0 LANGUAGES CXX)
77

88
if(NOT CMAKE_BUILD_TYPE)
99
set(CMAKE_BUILD_TYPE "Release" CACHE STRING

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ int main(const int argc, const char *argv[])
161161
162162
To build and run the example using GNU (assuming the default install location):
163163
```
164-
g++ -o foo_chem foo_chem.cpp -I/usr/local/micm-3.10.0/include -std=c++20
164+
g++ -o foo_chem foo_chem.cpp -I/usr/local/micm-3.11.0/include -std=c++20
165165
./foo_chem
166166
```
167167

docs/source/_static/switcher.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
3-
"name": "v3.10.0 (stable)",
4-
"version": "v3.10.0 (stable)",
3+
"name": "v3.11.0 (stable)",
4+
"version": "v3.11.0 (stable)",
55
"url": "https://ncar.github.io/micm"
66
},
77
{
@@ -54,6 +54,11 @@
5454
"version": "3.10.0",
5555
"url": "https://ncar.github.io/micm/versions/3.10.0"
5656
},
57+
{
58+
"name": "v3.11.0",
59+
"version": "3.11.0",
60+
"url": "https://ncar.github.io/micm/versions/3.11.0"
61+
},
5762
{
5863
"name": "dev",
5964
"version": "dev",

include/micm/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ extern "C" {
1010

1111
inline const char* GetMicmVersion()
1212
{
13-
return "3.10.0";
13+
return "3.11.0";
1414
}
1515
inline unsigned GetMicmVersionMajor()
1616
{
1717
return 3;
1818
}
1919
inline unsigned GetMicmVersionMinor()
2020
{
21-
return 10+0;
21+
return 11+0;
2222
}
2323
inline unsigned GetMicmVersionPatch()
2424
{

0 commit comments

Comments
 (0)