summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2021-10-28 10:51:37 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2021-10-28 14:30:27 +0530
commitbf70b77c51ffd60f967c9ec5ac10f3648930e5fb (patch)
treeddd82cc6f50df96e638eee1af5e6b56ca6b87e5b
parent343ce47aebfda4d17196b695719147876bd7605f (diff)
downloadmeson-0.59.tar.gz
Bump versions to 0.59.4 for release0.59.40.59
This release only contains a fix for a cuda-related regression in the 0.59.3 stable release: https://github.com/mesonbuild/meson/pull/9469
-rw-r--r--man/meson.12
-rw-r--r--mesonbuild/coredata.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/man/meson.1 b/man/meson.1
index 856b5c172..aeaf8577a 100644
--- a/man/meson.1
+++ b/man/meson.1
@@ -1,4 +1,4 @@
-.TH MESON "1" "October 2021" "meson 0.59.3" "User Commands"
+.TH MESON "1" "October 2021" "meson 0.59.4" "User Commands"
.SH NAME
meson - a high productivity build system
.SH DESCRIPTION
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py
index 528ca9c66..f4047957d 100644
--- a/mesonbuild/coredata.py
+++ b/mesonbuild/coredata.py
@@ -43,7 +43,7 @@ if T.TYPE_CHECKING:
KeyedOptionDictType = T.Union[T.Dict['OptionKey', 'UserOption[T.Any]'], OptionOverrideProxy]
CompilerCheckCacheKey = T.Tuple[T.Tuple[str, ...], str, str, T.Tuple[str, ...], str]
-version = '0.59.3'
+version = '0.59.4'
backendlist = ['ninja', 'vs', 'vs2010', 'vs2012', 'vs2013', 'vs2015', 'vs2017', 'vs2019', 'xcode']
default_yielding = False