From a952717b4f5792f7713e402f67604131eab65a11 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Wed, 13 Apr 2016 19:37:12 +0300 Subject: [PATCH] Bump version number for release. --- man/meson.1 | 2 +- man/mesonconf.1 | 2 +- man/mesongui.1 | 2 +- man/mesonintrospect.1 | 2 +- man/wraptool.1 | 2 +- mesonbuild/coredata.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/man/meson.1 b/man/meson.1 index 5596eeb68117..31ab52be3c7a 100644 --- a/man/meson.1 +++ b/man/meson.1 @@ -1,4 +1,4 @@ -.TH MESON "1" "March 2016" "meson 0.30.0" "User Commands" +.TH MESON "1" "April 2016" "meson 0.31.0" "User Commands" .SH NAME meson - a high productivity build system .SH DESCRIPTION diff --git a/man/mesonconf.1 b/man/mesonconf.1 index be690aee46ff..fe868e7e03f3 100644 --- a/man/mesonconf.1 +++ b/man/mesonconf.1 @@ -1,4 +1,4 @@ -.TH MESONCONF "1" "January 2016" "mesonconf 0.29.0" "User Commands" +.TH MESONCONF "1" "April 2016" "mesonconf 0.31.0" "User Commands" .SH NAME mesonconf - a tool to configure Meson builds .SH DESCRIPTION diff --git a/man/mesongui.1 b/man/mesongui.1 index 73d11a432911..976c3f790d0e 100644 --- a/man/mesongui.1 +++ b/man/mesongui.1 @@ -1,4 +1,4 @@ -.TH MESONGUI "1" "March 2016" "mesongui 0.30.0" "User Commands" +.TH MESONGUI "1" "April 2016" "mesongui 0.31.0" "User Commands" .SH NAME mesongui - a gui for the Meson build system .SH DESCRIPTION diff --git a/man/mesonintrospect.1 b/man/mesonintrospect.1 index 9fa629c6d89c..974a1dac0b66 100644 --- a/man/mesonintrospect.1 +++ b/man/mesonintrospect.1 @@ -1,4 +1,4 @@ -.TH MESONCONF "1" "January 2016" "mesonintrospect 0.29.0" "User Commands" +.TH MESONCONF "1" "April 2016" "mesonintrospect 0.31.0" "User Commands" .SH NAME mesonintrospect - a tool to extract information about a Meson build .SH DESCRIPTION diff --git a/man/wraptool.1 b/man/wraptool.1 index f5b7a6915109..baec06abcfc8 100644 --- a/man/wraptool.1 +++ b/man/wraptool.1 @@ -1,4 +1,4 @@ -.TH WRAPTOOL "1" "March 2016" "meson 0.30.0" "User Commands" +.TH WRAPTOOL "1" "April 2016" "meson 0.31.0" "User Commands" .SH NAME wraptool - source dependency downloader .SH DESCRIPTION diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py index ff45db5e2eda..1d79a2ed1e5f 100644 --- a/mesonbuild/coredata.py +++ b/mesonbuild/coredata.py @@ -15,7 +15,7 @@ import pickle, os, uuid from .mesonlib import MesonException, default_libdir, default_libexecdir, default_prefix -version = '0.31.0.dev1' +version = '0.31.0' class UserOption: def __init__(self, name, description, choices):