Skip to content

Commit

Permalink
Update version to 0.5.0 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
awvwgk authored Aug 30, 2024
1 parent 482fc75 commit fd66b4b
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 @@ get_directory_property(is-subproject PARENT_DIRECTORY)
project(
"test-drive"
LANGUAGES "Fortran"
VERSION "0.4.0"
VERSION "0.5.0"
DESCRIPTION "The simple testing framework"
)

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 = "test-drive"
version = "0.4.0"
version = "0.5.0"
license = "Apache-2.0 OR MIT"
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 @@ -14,7 +14,7 @@
project(
'test-drive',
'fortran',
version: '0.4.0',
version: '0.5.0',
license: 'Apache-2.0 OR MIT',
meson_version: '>=0.53',
default_options: [
Expand Down
4 changes: 2 additions & 2 deletions src/testdrive_version.f90
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ module testdrive_version


!> String representation of the test-drive version
character(len=*), parameter :: testdrive_version_string = "0.4.0"
character(len=*), parameter :: testdrive_version_string = "0.5.0"

!> Numeric representation of the test-drive version
integer, parameter :: testdrive_version_compact(3) = [0, 4, 0]
integer, parameter :: testdrive_version_compact(3) = [0, 5, 0]


contains
Expand Down

0 comments on commit fd66b4b

Please sign in to comment.