summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRan Benita <ran@unusedvar.com>2021-04-02 22:12:00 +0300
committerRan Benita <ran@unusedvar.com>2021-04-03 14:11:38 +0300
commit086353b380de05eb20519c5071354015670baad2 (patch)
tree68b68a8e20bdd904b59a8b303e65562df5b4aeb0
parent7e6d942a4f9ffc60b11bc62354b980340f181074 (diff)
downloadxorg-lib-libxkbcommon-xkbcommon-1.2.0.tar.gz
Bump version to 1.2.0xkbcommon-1.2.0
Signed-off-by: Ran Benita <ran@unusedvar.com>
-rw-r--r--NEWS26
-rw-r--r--meson.build2
2 files changed, 27 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 73f3205..fc31837 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,29 @@
+libxkbcommon 1.2.0 - 2021-04-03
+==================
+
+- `xkb_x11_keymap_new_from_device()` is much faster. It now performs only 2
+ roundtrips to the X server, instead of dozens (in first-time calls).
+
+ Contributed by Uli Schlachter.
+
+- Case-sensitive `xkb_keysym_from_name()` is much faster.
+
+- Keysym names of the form `0x12AB` and `U12AB` are parsed more strictly.
+ Previously the hexadecimal part was parsed with `strtoul()`, now only up
+ to 8 hexadecimal digits (0-9A-Fa-f) are allowed.
+
+- Compose files now have a size limit (65535 internal nodes). Further sequences
+ are discared and a warning is issued.
+
+- Compose table loading (`xkb_compose_table_new_from_locale()` and similar) is
+ much faster.
+
+- Use `poll()` instead of `epoll()` for `xlbcli interactive-evdev`, making it
+ portable to FreeBSD which provides evdev but not epoll. On FreeBSD, remember
+ to install the `evdev-proto` package to get the evdev headers.
+
+- The build now requires a C11 compiler (uses anonymous structs/unions).
+
libxkbcommon 1.1.0 - 2021-02-27
==================
diff --git a/meson.build b/meson.build
index 2b0c8aa..64c9ce8 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project(
'libxkbcommon',
'c',
- version: '1.1.0',
+ version: '1.2.0',
default_options: [
'c_std=c11',
'warning_level=2',