Skip to content

Commit 9c3401e

Browse files
authored
Bump to version 0.4.0 (#9)
1 parent 00bb499 commit 9c3401e

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ get_directory_property(is-subproject PARENT_DIRECTORY)
1717
project(
1818
"test-drive"
1919
LANGUAGES "Fortran"
20-
VERSION "0.3.0"
20+
VERSION "0.4.0"
2121
DESCRIPTION "The simple testing framework"
2222
)
2323

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# The simple testing framework
22

33
[![License](https://img.shields.io/badge/license-MIT%7CApache%202.0-blue)](LICENSE-Apache)
4+
[![Latest Version](https://img.shields.io/github/v/release/fortran-lang/test-drive)](https://github.com/fortran-lang/test-drive/releases/latest)
45
[![CI](https://github.com/fortran-lang/test-drive/workflows/CI/badge.svg)](https://github.com/fortran-lang/test-drive/actions)
56
[![codecov](https://codecov.io/gh/fortran-lang/test-drive/branch/main/graph/badge.svg)](https://codecov.io/gh/fortran-lang/test-drive)
67

fpm.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "test-drive"
2-
version = "0.3.0"
2+
version = "0.4.0"
33
license = "Apache-2.0 OR MIT"
44
maintainer = ["@awvwgk"]
55
author = ["Sebastian Ehlert"]

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
project(
1515
'test-drive',
1616
'fortran',
17-
version: '0.3.0',
17+
version: '0.4.0',
1818
license: 'Apache-2.0 OR MIT',
1919
meson_version: '>=0.53',
2020
default_options: [

src/testdrive_version.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ module testdrive_version
2020

2121

2222
!> String representation of the test-drive version
23-
character(len=*), parameter :: testdrive_version_string = "0.3.0"
23+
character(len=*), parameter :: testdrive_version_string = "0.4.0"
2424

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

2828

2929
contains

0 commit comments

Comments
 (0)