Skip to content

Commit a5c9053

Browse files
committed
Bump version to 0.6.0
1 parent 4b3fb3c commit a5c9053

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.5.0-linux-x86_64`
40+
_e.g._ `$ chmod u+x fpm-0.6.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.5.0"
2+
version = "0.6.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.5.0/fpm-0.5.0.F90"
45+
SOURCE_URL="https://github.com/fortran-lang/fpm/releases/download/v0.6.0/fpm-0.6.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
@@ -220,7 +220,7 @@ subroutine get_command_line_settings(cmd_settings)
220220
end select
221221
unix = os_is_unix(os)
222222
version_text = [character(len=80) :: &
223-
& 'Version: 0.5.0, alpha', &
223+
& 'Version: 0.6.0, alpha', &
224224
& 'Program: fpm(1)', &
225225
& 'Description: A Fortran package manager and build system', &
226226
& 'Home Page: https://github.com/fortran-lang/fpm', &

0 commit comments

Comments
 (0)