Skip to content

Commit 52c88d2

Browse files
committed
Update to version 0.5.2
1 parent a352cdb commit 52c88d2

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

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.5.1"
20+
VERSION "0.5.2"
2121
DESCRIPTION "Modular computation tool chain"
2222
)
2323

fpm.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name = "mctc-lib"
2-
version = "0.5.1"
2+
version = "0.5.2"
33
license = "Apache-2.0"
44
maintainer = ["@awvwgk"]
55
author = ["Sebastian Ehlert"]
6-
copyright = "2020-2025 Sebastian Ehlert"
6+
copyright = "2020-2026 Sebastian Ehlert"
77
description = "Modular computation tool chain library"
88
keywords = ["computational-chemistry", "io"]
99

@@ -38,4 +38,4 @@ md_extensions = ["markdown.extensions.toc", "markdown.extensions.smarty"]
3838

3939
[extra.ford.extra_mods]
4040
iso_fortran_env = "https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fFORTRAN_005fENV.html"
41-
jonquil = "https://toml-f.github.io/jonquil/module/jonquil.html"
41+
jonquil = "https://toml-f.github.io/jonquil/module/jonquil.html"

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.5.1',
18+
version: '0.5.2',
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.5.1"
26+
character(len=*), parameter :: mctc_version_string = "0.5.2"
2727

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

3131

3232
!> With support for JSON

0 commit comments

Comments
 (0)