Skip to content

Commit

Permalink
Bump to version 0.4.0 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
awvwgk authored Nov 14, 2021
1 parent 00bb499 commit 9c3401e
Show file tree
Hide file tree
Showing 5 changed files with 6 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.3.0"
VERSION "0.4.0"
DESCRIPTION "The simple testing framework"
)

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# The simple testing framework

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

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.3.0"
version = "0.4.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.3.0',
version: '0.4.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.3.0"
character(len=*), parameter :: testdrive_version_string = "0.4.0"

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


contains
Expand Down

0 comments on commit 9c3401e

Please sign in to comment.