aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/markdown/Release-notes-for-0.43.0.md16
-rw-r--r--docs/sitemap.txt1
-rw-r--r--mesonbuild/coredata.py2
3 files changed, 18 insertions, 1 deletions
diff --git a/docs/markdown/Release-notes-for-0.43.0.md b/docs/markdown/Release-notes-for-0.43.0.md
new file mode 100644
index 0000000..6444e7a
--- /dev/null
+++ b/docs/markdown/Release-notes-for-0.43.0.md
@@ -0,0 +1,16 @@
+---
+title: Release 0.43
+short-description: Release notes for 0.43 (preliminary)
+
+
+# New releases
+
+This page is a placeholder for the eventual release notes.
+
+Notable new features should come with release note updates. This is
+done by creating a file snippet called `snippets/featurename.md` and
+whose contents should look like this:
+
+ # Feature name
+
+ A short description explaining the new feature and how it should be used.
diff --git a/docs/sitemap.txt b/docs/sitemap.txt
index c4df54b..af8aede 100644
--- a/docs/sitemap.txt
+++ b/docs/sitemap.txt
@@ -59,6 +59,7 @@ index.md
Shipping-prebuilt-binaries-as-wraps.md
fallback-wraptool.md
Release-notes.md
+ Release-notes-for-0.43.0.md
Release-notes-for-0.42.0.md
Release-notes-for-0.41.0.md
Release-notes-for-0.40.0.md
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py
index a2b2eab..e7c1e6d 100644
--- a/mesonbuild/coredata.py
+++ b/mesonbuild/coredata.py
@@ -19,7 +19,7 @@ from .mesonlib import MesonException, commonpath
from .mesonlib import default_libdir, default_libexecdir, default_prefix
import ast
-version = '0.42.0'
+version = '0.43.0.dev1'
backendlist = ['ninja', 'vs', 'vs2010', 'vs2015', 'vs2017', 'xcode']
class UserOption: