Bump version number for release.
This commit is contained in:
parent
66fbcde96e
commit
acdf5c2e71
|
@ -1,4 +1,4 @@
|
||||||
.TH MESON "1" "December 2016" "meson 0.37.1" "User Commands"
|
.TH MESON "1" "January 2017" "meson 0.38.0" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
meson - a high productivity build system
|
meson - a high productivity build system
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH MESONCONF "1" "December 2016" "mesonintrospect 0.37.1" "User Commands"
|
.TH MESONCONF "1" "January 2017" "mesonintrospect 0.38.0" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mesonintrospect - a tool to extract information about a Meson build
|
mesonintrospect - a tool to extract information about a Meson build
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH WRAPTOOL "1" "December 2016" "meson 0.37.1" "User Commands"
|
.TH WRAPTOOL "1" "January 2017" "meson 0.38.0" "User Commands"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
wraptool - source dependency downloader
|
wraptool - source dependency downloader
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright 2012-2016 The Meson development team
|
# Copyright 2012-2017 The Meson development team
|
||||||
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
import pickle, os, uuid
|
import pickle, os, uuid
|
||||||
from .mesonlib import MesonException, default_libdir, default_libexecdir, default_prefix
|
from .mesonlib import MesonException, default_libdir, default_libexecdir, default_prefix
|
||||||
|
|
||||||
version = '0.38.0.dev1'
|
version = '0.38.0'
|
||||||
backendlist = ['ninja', 'vs2010', 'vs2015', 'xcode']
|
backendlist = ['ninja', 'vs2010', 'vs2015', 'xcode']
|
||||||
|
|
||||||
class UserOption:
|
class UserOption:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -74,7 +74,7 @@ setup(name='meson',
|
||||||
data_files=[('share/man/man1', ['man/meson.1',
|
data_files=[('share/man/man1', ['man/meson.1',
|
||||||
'man/mesonconf.1',
|
'man/mesonconf.1',
|
||||||
'man/mesonintrospect.1',
|
'man/mesonintrospect.1',
|
||||||
'main/mesontest.1',
|
'man/mesontest.1',
|
||||||
'man/wraptool.1'])],
|
'man/wraptool.1'])],
|
||||||
classifiers=['Development Status :: 5 - Production/Stable',
|
classifiers=['Development Status :: 5 - Production/Stable',
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
|
|
Loading…
Reference in New Issue