Skip to content

Commit cc8a920

Browse files
authored
Bump version to 0.5.0 (#614)
1 parent 3db95d9 commit cc8a920

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Binaries for the latest stable release are available [to download](https://githu
3737

3838
__Note:__ On Linux and MacOS, you will need to enable executable permission before you can use the binary.
3939

40-
_e.g._ `$ chmod u+x fpm-0.4.0-linux-x86_64`
40+
_e.g._ `$ chmod u+x fpm-0.5.0-linux-x86_64`
4141

4242
The binaries at the [current tag](https://github.com/fortran-lang/fpm/releases/tag/current) are updated automatically to always provide the current git version from the default branch.
4343

fpm.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "fpm"
2-
version = "0.4.0"
2+
version = "0.5.0"
33
license = "MIT"
44
author = "fpm maintainers"
55
maintainer = ""

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ done
4242

4343
set -u # error on use of undefined variable
4444

45-
SOURCE_URL="https://github.com/fortran-lang/fpm/releases/download/v0.4.0/fpm-0.4.0.F90"
45+
SOURCE_URL="https://github.com/fortran-lang/fpm/releases/download/v0.5.0/fpm-0.5.0.F90"
4646
BOOTSTRAP_DIR="build/bootstrap"
4747
if [ -z ${FC+x} ]; then
4848
FC="gfortran"

src/fpm_command_line.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ subroutine get_command_line_settings(cmd_settings)
194194
case default ; os_type = "OS Type: UNKNOWN"
195195
end select
196196
version_text = [character(len=80) :: &
197-
& 'Version: 0.4.0, alpha', &
197+
& 'Version: 0.5.0, alpha', &
198198
& 'Program: fpm(1)', &
199199
& 'Description: A Fortran package manager and build system', &
200200
& 'Home Page: https://github.com/fortran-lang/fpm', &

0 commit comments

Comments
 (0)