Skip to content

Commit ba5ed88

Browse files
authored
Release 3.12.0 (#961)
update the version
1 parent eccac1b commit ba5ed88

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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.11.0
4+
version: v3.12.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.24)
44

55
# project and version must be on the same line so that the docs can extract it
6-
project(micm VERSION 3.11.0 LANGUAGES CXX)
6+
project(micm VERSION 3.12.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
@@ -160,7 +160,7 @@ int main(const int argc, const char *argv[])
160160
161161
To build and run the example using GNU (assuming the default install location):
162162
```
163-
g++ -o foo_chem foo_chem.cpp -I/usr/local/micm-3.11.0/include -std=c++20
163+
g++ -o foo_chem foo_chem.cpp -I/usr/local/micm-3.12.0/include -std=c++20
164164
./foo_chem
165165
```
166166

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.11.0";
13+
return "3.12.0";
1414
}
1515
inline unsigned GetMicmVersionMajor()
1616
{
1717
return 3;
1818
}
1919
inline unsigned GetMicmVersionMinor()
2020
{
21-
return 11+0;
21+
return 12+0;
2222
}
2323
inline unsigned GetMicmVersionPatch()
2424
{

0 commit comments

Comments
 (0)