summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS.org5
-rw-r--r--meson.build4
2 files changed, 6 insertions, 3 deletions
diff --git a/NEWS.org b/NEWS.org
index fe8c081..23648a7 100644
--- a/NEWS.org
+++ b/NEWS.org
@@ -129,7 +129,10 @@
- 1.12.13: if available, *mu* now uses the system versions of ~CLI11~ and ~fmt~
instead of the "vendored" ones. This can be overridden by passing the
- ~-Duse-embedded-cli11=true~ and ~-Duse-embedded-fmt=true~ to Meson.
+ ~-Duse-embedded-cli11=true~ and ~-Duse-embedded-fmt=true~ to Meson. You can
+ influence where the build system (i.e., meson) looks through the
+ `PKG_CONFIG_PATH` environment variable (see the pkg-config/pkgconf
+ man-pages)
- 1.12.13: test commands are now built "lazily", i.e., building is only
triggered when running the tests. This speed up the build when not
diff --git a/meson.build b/meson.build
index 97b5761..c3fb36a 100644
--- a/meson.build
+++ b/meson.build
@@ -17,7 +17,7 @@
################################################################################
# project setup
project('mu', ['c', 'cpp'],
- version: '1.12.13-dev2',
+ version: '1.12.13',
meson_version: '>= 0.56.0',
license: 'GPL-3.0-or-later',
default_options : [
@@ -28,7 +28,7 @@ project('mu', ['c', 'cpp'],
# hard-code the date here (for reproducibility); we derive the dates used in
# e.g. documentation from this.
-mu_date='2025-09-08'
+mu_date='2025-09-12'
# installation paths
prefixdir = get_option('prefix')