Skip to content

Commit

Permalink
Bump version to 0.3.0 (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
awvwgk authored Apr 13, 2022
1 parent 95e3dce commit 3d0e921
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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.5"
VERSION "0.3.0"
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.5"
version = "0.3.0"
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.5',
version: '0.3.0',
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.5"
character(len=*), parameter :: mctc_version_string = "0.3.0"

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


!> With support for JSON
Expand Down

0 comments on commit 3d0e921

Please sign in to comment.