From 37ddadcd8765d22add71b6eae25f63d0f1caa74a Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 30 Jul 2016 22:33:34 +0300 Subject: [PATCH] Raise version number for release. --- man/meson.1 | 2 +- man/mesonconf.1 | 2 +- man/mesonintrospect.1 | 2 +- man/wraptool.1 | 2 +- mesonbuild/coredata.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/man/meson.1 b/man/meson.1 index 84323219ee45..83ac3972ba0b 100644 --- a/man/meson.1 +++ b/man/meson.1 @@ -1,4 +1,4 @@ -.TH MESON "1" "June 2016" "meson 0.32.0" "User Commands" +.TH MESON "1" "July 2016" "meson 0.33.0" "User Commands" .SH NAME meson - a high productivity build system .SH DESCRIPTION diff --git a/man/mesonconf.1 b/man/mesonconf.1 index e1cef245e8f0..35f8486da093 100644 --- a/man/mesonconf.1 +++ b/man/mesonconf.1 @@ -1,4 +1,4 @@ -.TH MESONCONF "1" "June 2016" "mesonconf 0.32.0" "User Commands" +.TH MESONCONF "1" "July 2016" "mesonconf 0.33.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 39392e3b3f69..307b99a0dec4 100644 --- a/man/mesonintrospect.1 +++ b/man/mesonintrospect.1 @@ -1,4 +1,4 @@ -.TH MESONCONF "1" "June 2016" "mesonintrospect 0.32.0" "User Commands" +.TH MESONCONF "1" "July 2016" "mesonintrospect 0.33.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 780b8e2157e4..26d942f4742b 100644 --- a/man/wraptool.1 +++ b/man/wraptool.1 @@ -1,4 +1,4 @@ -.TH WRAPTOOL "1" "June 2016" "meson 0.32.0" "User Commands" +.TH WRAPTOOL "1" "July 2016" "meson 0.33.0" "User Commands" .SH NAME wraptool - source dependency downloader .SH DESCRIPTION diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py index c39750995e86..85095ee1c0f9 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.33.0.dev1' +version = '0.33.0' backendlist = ['ninja', 'vs2010', 'vs2015', 'xcode'] class UserOption: