Bump version to 1.4.0 Signed-off-by: Ran Benita <ran@unusedvar.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
diff --git a/NEWS b/NEWS
index 1c945b4..3b35bb6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+libxkbcommon 1.4.0 - 2022-02-04
+==================
+
+- Add `enable-tools` option to Meson build (on by default) to allow disabling
+ the `xkbcli` tools.
+
+ Contributed by Alex Xu (Hello71).
+
+- In `xkbcli list`, fix "YAML Norway problem" in output.
+
+ Contributed by Peter Hutterer.
+
+- In libxkbregistry, variants now inherit iso639, iso3166 and brief from parent
+ layout if omitted.
+
+ Contributed by M Hickford.
+
+- In libxkbregistry, don't call `xmlCleanupParser()` - it's not supposed to
+ be called by libraries.
+
+ Contributed by Peter Hutterer.
+
+- In libxkbregistry, skip over invalid ISO-639 or ISO-3166 entries.
+
+ Contributed by Peter Hutterer.
+
libxkbcommon 1.3.1 - 2021-09-10
==================
diff --git a/meson.build b/meson.build
index 2aa74c3..fb77185 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project(
'libxkbcommon',
'c',
- version: '1.3.1',
+ version: '1.4.0',
default_options: [
'c_std=c11',
'warning_level=2',