Skip to content

Commit

Permalink
Bump version 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
awvwgk committed Feb 26, 2022
1 parent f09e237 commit fd9196c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
with:
python-version: '3.x'
- name: Install dependencies
run: pip install ford==6.1.6
run: pip install ford
- name: Build Documentation
run: ford docs.md
- uses: JamesIves/github-pages-deploy-action@3.7.1
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cmake_minimum_required(VERSION 3.14)
project(
"mctc-lib"
LANGUAGES "Fortran"
VERSION "0.2.4"
VERSION "0.2.5"
DESCRIPTION "Modular computation tool chain"
)

Expand Down
2 changes: 1 addition & 1 deletion fpm.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "mctc-lib"
version = "0.2.4"
version = "0.2.5"
license = "Apache-2.0"
maintainer = ["@awvwgk"]
author = ["Sebastian Ehlert"]
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
project(
'mctc-lib',
'fortran',
version: '0.2.4',
version: '0.2.5',
license: 'Apache-2.0',
meson_version: '>=0.55',
default_options: [
Expand Down
4 changes: 2 additions & 2 deletions src/mctc/version.F90
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ module mctc_version


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

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


!> With support for JSON
Expand Down

0 comments on commit fd9196c

Please sign in to comment.