aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-03-05 20:34:07 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-03-05 20:34:07 +0200
commit9819bc9c56f26f582f9dfe413af986cd517b24f2 (patch)
treea050eeeed2e61b2f402d865eabf42f1df4b1d7ae
parent3e92a86db43211abb4b11957b5e4c62e09559dd6 (diff)
downloadmeson-9819bc9c56f26f582f9dfe413af986cd517b24f2.zip
meson-9819bc9c56f26f582f9dfe413af986cd517b24f2.tar.gz
meson-9819bc9c56f26f582f9dfe413af986cd517b24f2.tar.bz2
Add Python minimum version requirement in release notes. [skip ci]
-rw-r--r--docs/markdown/Release-notes-for-0.45.0.md31
1 files changed, 19 insertions, 12 deletions
diff --git a/docs/markdown/Release-notes-for-0.45.0.md b/docs/markdown/Release-notes-for-0.45.0.md
index 23bff93..6b24183 100644
--- a/docs/markdown/Release-notes-for-0.45.0.md
+++ b/docs/markdown/Release-notes-for-0.45.0.md
@@ -5,13 +5,18 @@ short-description: Release notes for 0.45
# New features
+## Python minimum version is now 3.5
+
+Meson will from this version on require Python version 3.5 or newer.
+
## Config-Tool based dependencies can be specified in a cross file
-Tools like LLVM and pcap use a config tool for dependencies, this is a script
-or binary that is run to get configuration information (cflags, ldflags, etc)
-from.
+Tools like LLVM and pcap use a config tool for dependencies, this is a
+script or binary that is run to get configuration information (cflags,
+ldflags, etc) from.
-These binaries may now be specified in the `binaries` section of a cross file.
+These binaries may now be specified in the `binaries` section of a
+cross file.
```dosini
[binaries]
@@ -109,8 +114,8 @@ values. It can be specified like this in the `meson_options.txt` file:
## New method meson.project_license()
-The `meson` builtin object now has a `project_license()` method that returns a
-list of all licenses for the project.
+The `meson` builtin object now has a `project_license()` method that
+returns a list of all licenses for the project.
## Rust cross-compilation
@@ -147,10 +152,10 @@ meson init --name=myproject --type=executable --language=c
## Improve test setup selection
-Test setups are now identified (also) by the project they belong to and it
-is possible to select the used test setup from a specific project. E.g.
-to use a test setup `some_setup` from project `some_project` for all
-executed tests one can use
+Test setups are now identified (also) by the project they belong to
+and it is possible to select the used test setup from a specific
+project. E.g. to use a test setup `some_setup` from project
+`some_project` for all executed tests one can use
meson test --setup some_project:some_setup
@@ -171,9 +176,11 @@ The `promote` command makes it easy to copy nested dependencies to the top level
meson wrap promote scommon
-This will search the project tree for a subproject called `scommon` and copy it to the top level.
+This will search the project tree for a subproject called `scommon`
+and copy it to the top level.
-If there are many embedded subprojects with the same name, you have to specify which one to promote manually like this:
+If there are many embedded subprojects with the same name, you have to
+specify which one to promote manually like this:
meson wrap promote subprojects/s1/subprojects/scommon