Skip to content

Commit 5113975

Browse files
authored
Update to version 0.4.2 (grimme-lab#89)
1 parent af2ae2e commit 5113975

4 files changed

Lines changed: 7 additions & 6 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.4.1"
20+
VERSION "0.4.2"
2121
DESCRIPTION "Modular computation tool chain"
2222
)
2323

fpm.toml

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

1010
[dependencies]
1111
jonquil.git = "https://github.com/toml-f/jonquil.git"
12+
jonquil.tag = "v0.3.0"
1213

1314
[[executable]]
1415
name = "mctc-convert"

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

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

3131

3232
!> With support for JSON

0 commit comments

Comments
 (0)