aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-07-30 22:33:34 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2016-07-30 22:33:34 +0300
commit37ddadcd8765d22add71b6eae25f63d0f1caa74a (patch)
tree16db0bf34a51095137301f5ac9cef2bacc733c28
parent1d36f686299076973cf9cabe300c521b73838dca (diff)
downloadmeson-37ddadcd8765d22add71b6eae25f63d0f1caa74a.zip
meson-37ddadcd8765d22add71b6eae25f63d0f1caa74a.tar.gz
meson-37ddadcd8765d22add71b6eae25f63d0f1caa74a.tar.bz2
Raise version number for release.0.33.0
-rw-r--r--man/meson.12
-rw-r--r--man/mesonconf.12
-rw-r--r--man/mesonintrospect.12
-rw-r--r--man/wraptool.12
-rw-r--r--mesonbuild/coredata.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/man/meson.1 b/man/meson.1
index 8432321..83ac397 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 e1cef24..35f8486 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 39392e3..307b99a 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 780b8e2..26d942f 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 c397509..85095ee 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: