Bump version to 1.3.0 xkbcommon-1.3.0
authorRan Benita <ran@unusedvar.com>
Sat, 1 May 2021 20:51:23 +0000 (23:51 +0300)
committerRan Benita <ran@unusedvar.com>
Sat, 1 May 2021 20:51:23 +0000 (23:51 +0300)
Signed-off-by: Ran Benita <ran@unusedvar.com>
NEWS
meson.build

diff --git a/NEWS b/NEWS
index 802551c..e3efe80 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,35 @@
+libxkbcommon 1.3.0 - 2021-05-01
+==================
+
+- Change `xkbcli list` to output YAML, instead of the previous ad-hoc format.
+
+  This allows to more easily process the information in a programmetic way, for
+  example
+
+    xkbcli list | yq -r ".layouts[].layout"
+
+  Contributed by Peter Hutterer.
+
+- Optimize a certain part of keymap compilation (atom interning).
+
+- Fix segmentation fault in case-insensitive `xkb_keysym_from_name` for certain
+  values like the empty string.
+
+  Contributed by Isaac Freund.
+
+- Support building libxkbcommon as a meson subproject.
+
+  Contributed by Adrian Perez de Castro.
+
+- Add `ftruncate` fallback for `posix_fallocate` in `xkbcli interactive-wayland`
+  for FreeBSD.
+
+  Contributed by Evgeniy Khramtsov.
+
+- Properly export library symbols in MSVC.
+
+  Contributed by Adrian Perez de Castro.
+
 libxkbcommon 1.2.1 - 2021-04-07
 ==================
 
index f178ead..343370f 100644 (file)
@@ -1,7 +1,7 @@
 project(
     'libxkbcommon',
     'c',
-    version: '1.2.1',
+    version: '1.3.0',
     default_options: [
         'c_std=c11',
         'warning_level=2',