Skip to content

Commit

Permalink
Bump to version 0.3.0 (#18)
Browse files Browse the repository at this point in the history
* Bump to version 0.3.0

* Update Copyright year
  • Loading branch information
thfroitzheim authored Jun 13, 2024
1 parent a9eb7de commit 663245d
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 @@ -19,7 +19,7 @@ get_directory_property(is-subproject PARENT_DIRECTORY)
project(
"mstore"
LANGUAGES "Fortran"
VERSION "0.2.0"
VERSION "0.3.0"
DESCRIPTION "Molecular structure store for testing"
)

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 = "mstore"
version = "0.2.0"
version = "0.3.0"
license = "Apache-2.0"
maintainer = ["@awvwgk"]
author = ["Sebastian Ehlert"]
copyright = "2020-2021 Sebastian Ehlert"
copyright = "2020-2024 Sebastian Ehlert"
description = "Molecular structure store for testing"
keywords = ["computational-chemistry", "testing"]

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
project(
'mstore',
'fortran',
version: '0.2.0',
version: '0.3.0',
license: 'Apache-2.0',
meson_version: '>=0.53',
default_options: [
Expand Down
4 changes: 2 additions & 2 deletions src/mstore_version.f90
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ module mstore_version


!> String representation of the mstore version
character(len=*), parameter :: mstore_version_string = "0.2.0"
character(len=*), parameter :: mstore_version_string = "0.3.0"

!> Numeric representation of the mstore version
integer, parameter :: mstore_version_compact(3) = [0, 2, 0]
integer, parameter :: mstore_version_compact(3) = [0, 3, 0]


contains
Expand Down

0 comments on commit 663245d

Please sign in to comment.