Skip to content

Commit fd9196c

Browse files
committed
Bump version 0.2.5
1 parent f09e237 commit fd9196c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
with:
1212
python-version: '3.x'
1313
- name: Install dependencies
14-
run: pip install ford==6.1.6
14+
run: pip install ford
1515
- name: Build Documentation
1616
run: ford docs.md
1717
- uses: JamesIves/github-pages-deploy-action@3.7.1

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cmake_minimum_required(VERSION 3.14)
1717
project(
1818
"mctc-lib"
1919
LANGUAGES "Fortran"
20-
VERSION "0.2.4"
20+
VERSION "0.2.5"
2121
DESCRIPTION "Modular computation tool chain"
2222
)
2323

fpm.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "mctc-lib"
2-
version = "0.2.4"
2+
version = "0.2.5"
33
license = "Apache-2.0"
44
maintainer = ["@awvwgk"]
55
author = ["Sebastian Ehlert"]

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
project(
1616
'mctc-lib',
1717
'fortran',
18-
version: '0.2.4',
18+
version: '0.2.5',
1919
license: 'Apache-2.0',
2020
meson_version: '>=0.55',
2121
default_options: [

src/mctc/version.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ module mctc_version
2323

2424

2525
!> String representation of the mctc-lib version
26-
character(len=*), parameter :: mctc_version_string = "0.2.4"
26+
character(len=*), parameter :: mctc_version_string = "0.2.5"
2727

2828
!> Numeric representation of the mctc-lib version
29-
integer, parameter :: mctc_version_compact(3) = [0, 2, 4]
29+
integer, parameter :: mctc_version_compact(3) = [0, 2, 5]
3030

3131

3232
!> With support for JSON

0 commit comments

Comments
 (0)