Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-04-02 | Bump version number for rc2.1.1.0rc2 | Jussi Pakkanen | 1 | -1/+1 | |
2023-03-28 | Bump version number for rc1.1.1.0rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2023-03-28 | Add support for meson.options as a replacement for meson_options.txt | Dylan Baker | 1 | -1/+1 | |
We will still try to load `meson_options.txt` if `meson.options` doesn't exist. Because there are some advantages to using `meson.options` even with older versions of meson (such as better text editor handling) we will not warn about the existence of a `meson.options` file if a `meson_options.txt` file or symlink also exists. The name `meson.options` was picked instead of alternative proposals, such as `meson_options.build` for a couple of reasons: 1. meson.options is shorter 2. While the syntax is the same, only the `option()` function may be called in meson.options, while, it may not be called in meson.build 3. While the two files share a syntax and elementary types (strings, arrays, etc), they have different purposes: `meson.build` declares build targets, `meson.options` declares options. This is similar to the difference between C's `.c` and `.h` extensions. As an implementation detail `Interpreter.option_file` has been removed, as it is used exactly once, in the `project()` call to read the options, and we can just calculate it there and not store it. Fixes: #11176 | |||||
2022-12-10 | Bump version numbers for rc1.1.0.0rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2022-11-06 | Bump version number for release.0.64.0 | Jussi Pakkanen | 1 | -1/+1 | |
2022-10-25 | Bump version numbers for 0.64.0.rc1.0.64.0rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2022-07-03 | Finalize the release.0.63.0 | Jussi Pakkanen | 1 | -1/+1 | |
2022-06-19 | Update version numbers for rc1.0.63.0rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2022-03-10 | Bump version numbers for rc1 release.0.62.0rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2022-01-02 | Bump version numbers for rc1.0.61.0rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2021-10-11 | Bump version number for rc1.0.60.0.rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2021-07-05 | Bump version number for rc1.0.59.0.rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2021-05-02 | Release 0.58.0.0.58.0 | Jussi Pakkanen | 1 | -1/+1 | |
2021-04-26 | Bump version number for rc1.0.58.0.rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2021-02-09 | Bump version numbers for rc1.0.57.0.rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2020-10-19 | Bump version number for rc1.0.56.0.rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2020-07-02 | Bump version number for RC1.0.55.0.rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2020-03-24 | Bump version number for rc1.0.54.0.rc1 | Jussi Pakkanen | 1 | -1/+1 | |
2020-01-07 | Prepare new release.0.53.0 | Jussi Pakkanen | 1 | -1/+1 | |
2019-10-06 | Updated version numbers for 0.52.0 release.0.52.0 | Jussi Pakkanen | 1 | -1/+1 | |
2019-09-05 | man: Make argument order of setup command consistent with help message | Fabian BlÀse | 1 | -4/+4 | |
In msetup the two positional arguments build-dir and source-dir are added to the argument parser in this order. This also affects the help message. This order is different from the order given in the man page. Therefore it is switched around in the man page to make it consistent with the help message. As the code automatically decides which directory contains what, this change is only cosmetic. Both argument orders should be valid. Signed-off-by: Fabian BlÀse <fabian@blaese.de> | |||||
2019-07-12 | Change meson test's build failure exit code to 125 | Christoph Weiss | 1 | -0/+16 | |
2019-06-16 | Update things for new release.0.51.0 | Jussi Pakkanen | 1 | -1/+1 | |
2019-05-27 | Update to new ccache URL | Joel Rosdahl | 1 | -1/+1 | |
ccacheâs web site is now located at https://ccache.dev. Bonus: Use the preferred capitalization âCcacheâ instead of âCCacheâ. | |||||
2019-03-10 | Update everything for new release.0.50.0 | Jussi Pakkanen | 1 | -1/+1 | |
2019-01-14 | Fix typo [skip ci] | Shubham Lagwankar | 1 | -1/+1 | |
2018-12-09 | Update everything for release 0.49.00.49.0 | Jussi Pakkanen | 1 | -1/+1 | |
2018-09-22 | Bump version number for release. | Jussi Pakkanen | 1 | -1/+1 | |
2018-07-19 | Remove long deprecated command scripts. | Jussi Pakkanen | 4 | -49/+0 | |
2018-07-02 | Update everything for new release.0.47.0 | Jussi Pakkanen | 5 | -5/+5 | |
2018-04-23 | Updated version number for new release.0.46.0 | Jussi Pakkanen | 5 | -5/+5 | |
2018-03-04 | Updated information for new release.0.45.0 | Jussi Pakkanen | 5 | -5/+5 | |
2018-02-15 | Verify that failing tests are failing with an error, not a python exception | Jon Turney | 1 | -0/+13 | |
PR #2527 suggests "making failing tests more strict about failing gracefully". To achive this, make meson exit with distinct exit statuses for meson errors and python exceptions, and check the exit status is as expected for failing tests. I can't see how to write a test for this, within the current framework. You can test this change by reverting the fix (but not the test) from commit 1a159db8 and verifying that 'test cases/failing/66 string as link target' fails. | |||||
2017-12-10 | Updated version number for new release.0.44.0 | Jussi Pakkanen | 5 | -5/+5 | |
2017-10-31 | man: remove references to `mesontest` in meson(1) | Eric Engestrom | 1 | -2/+4 | |
`mesontest` is deprecated, and shouldn't be suggested to users anymore. | |||||
2017-10-11 | man: fix copy/paste typo in mesonintrospect(1) | Eric Engestrom | 1 | -1/+1 | |
2017-10-11 | man: remove references to `mesonconf` in meson(1) | Eric Engestrom | 1 | -4/+6 | |
`mesonconf` is deprecated, and shouldn't be suggested to users anymore. | |||||
2017-10-08 | Bump version number for release.0.43.0 | Jussi Pakkanen | 5 | -5/+5 | |
2017-08-15 | Bump numbers for new release.0.42.0 | Jussi Pakkanen | 5 | -5/+5 | |
2017-08-05 | Update man pages. | Jussi Pakkanen | 5 | -123/+176 | |
2017-06-19 | Update version number for bugfix release.0.41.1 | Jussi Pakkanen | 5 | -5/+5 | |
2017-06-12 | Updated version number for release.0.41.0 | Jussi Pakkanen | 5 | -5/+5 | |
2017-04-28 | Updated version numbers for point release.0.40.1 | Jussi Pakkanen | 5 | -5/+5 | |
2017-04-23 | Update version number for release.0.40.0 | Jussi Pakkanen | 5 | -5/+5 | |
2017-03-15 | Set version number for bugfix release.0.39.1 | Jussi Pakkanen | 5 | -5/+5 | |
2017-03-05 | Increment version number for release.0.39.0 | Jussi Pakkanen | 5 | -5/+5 | |
2017-02-07 | Updated version numbers on manpages.0.38.1 | Jussi Pakkanen | 5 | -5/+5 | |
2017-01-29 | Bump version number for release.0.38.0 | Jussi Pakkanen | 3 | -3/+3 | |
2017-01-23 | Added man page for mesontest. | Jussi Pakkanen | 1 | -0/+57 | |
2016-12-20 | Update version number for 0.37.1.0.37.1 | Jussi Pakkanen | 4 | -4/+4 | |