Skip to content

Commit

Permalink
Release version 0.3.2 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
awvwgk authored Aug 29, 2024
1 parent 56c1455 commit 769fbfa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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.3.1"
VERSION "0.3.2"
DESCRIPTION "Modular computation tool chain"
)

Expand Down
4 changes: 2 additions & 2 deletions fpm.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name = "mctc-lib"
version = "0.3.1"
version = "0.3.2"
license = "Apache-2.0"
maintainer = ["@awvwgk"]
author = ["Sebastian Ehlert"]
copyright = "2020-2021 Sebastian Ehlert"
copyright = "2020-2024 Sebastian Ehlert"
description = "Modular computation tool chain library"
keywords = ["computational-chemistry", "io"]

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.3.1',
version: '0.3.2',
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.3.1"
character(len=*), parameter :: mctc_version_string = "0.3.2"

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


!> With support for JSON
Expand Down

0 comments on commit 769fbfa

Please sign in to comment.