diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-03-05 23:09:33 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-03-05 23:09:33 +0200 |
commit | b63cdc839521fba349e04cc3a156c6637097ac29 (patch) | |
tree | d950cb2294f621929de87c81f3f147a650bf2b58 | |
parent | 0543a378cafe71c26a60f1c136cff21005f98934 (diff) | |
download | meson-b63cdc839521fba349e04cc3a156c6637097ac29.zip meson-b63cdc839521fba349e04cc3a156c6637097ac29.tar.gz meson-b63cdc839521fba349e04cc3a156c6637097ac29.tar.bz2 |
Increment version number for release.0.39.0
-rw-r--r-- | man/meson.1 | 2 | ||||
-rw-r--r-- | man/mesonconf.1 | 2 | ||||
-rw-r--r-- | man/mesonintrospect.1 | 2 | ||||
-rw-r--r-- | man/mesontest.1 | 2 | ||||
-rw-r--r-- | man/wraptool.1 | 2 | ||||
-rw-r--r-- | mesonbuild/coredata.py | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/man/meson.1 b/man/meson.1 index 4ead342..6311103 100644 --- a/man/meson.1 +++ b/man/meson.1 @@ -1,4 +1,4 @@ -.TH MESON "1" "February 2017" "meson 0.38.1" "User Commands" +.TH MESON "1" "March 2017" "meson 0.39.0" "User Commands" .SH NAME meson - a high productivity build system .SH DESCRIPTION diff --git a/man/mesonconf.1 b/man/mesonconf.1 index 53f7f75..e334d07 100644 --- a/man/mesonconf.1 +++ b/man/mesonconf.1 @@ -1,4 +1,4 @@ -.TH MESONCONF "1" "February 2017" "mesonconf 0.38.1" "User Commands" +.TH MESONCONF "1" "March 2017" "mesonconf 0.39.0" "User Commands" .SH NAME mesonconf - a tool to configure Meson builds .SH DESCRIPTION diff --git a/man/mesonintrospect.1 b/man/mesonintrospect.1 index 39169c4..2346dce 100644 --- a/man/mesonintrospect.1 +++ b/man/mesonintrospect.1 @@ -1,4 +1,4 @@ -.TH MESONCONF "1" "February 2017" "mesonintrospect 0.38.1" "User Commands" +.TH MESONCONF "1" "March 2017" "mesonintrospect 0.39.0" "User Commands" .SH NAME mesonintrospect - a tool to extract information about a Meson build .SH DESCRIPTION diff --git a/man/mesontest.1 b/man/mesontest.1 index e87efec..b98cff6 100644 --- a/man/mesontest.1 +++ b/man/mesontest.1 @@ -1,4 +1,4 @@ -.TH MESON "1" "February 2017" "meson 0.38.1" "User Commands" +.TH MESON "1" "March 2017" "meson 0.39.0" "User Commands" .SH NAME mesontest - test tool for the Meson build system .SH DESCRIPTION diff --git a/man/wraptool.1 b/man/wraptool.1 index b6abaa9..3b0766b 100644 --- a/man/wraptool.1 +++ b/man/wraptool.1 @@ -1,4 +1,4 @@ -.TH WRAPTOOL "1" "February 2017" "meson 0.38.1" "User Commands" +.TH WRAPTOOL "1" "March 2017" "meson 0.39.0" "User Commands" .SH NAME wraptool - source dependency downloader .SH DESCRIPTION diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py index 0e6685c..2165f18 100644 --- a/mesonbuild/coredata.py +++ b/mesonbuild/coredata.py @@ -17,7 +17,7 @@ from pathlib import PurePath from .mesonlib import MesonException, commonpath from .mesonlib import default_libdir, default_libexecdir, default_prefix -version = '0.39.0.dev1' +version = '0.39.0' backendlist = ['ninja', 'vs2010', 'vs2015', 'xcode'] class UserOption: |