From fbc79cbc2cc9a2c97ca16c69c17cfdd7a365f7f3 Mon Sep 17 00:00:00 2001 From: Raheman Vaiya Date: Wed, 29 Dec 2021 20:44:56 -0500 Subject: [PATCH] Version bump. --- CHANGELOG.md | 14 ++++++++++++++ Makefile | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c2f2cb..2a5e293 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# v2.1.0-beta + + NOTE: This might break some configs (see below) + + - Change default modifier mappings to their full names (i.e `control = + layer(control)` instead of `control = layer(C)` in an unmodified key map)`. + + - Modifier names are now syntactic sugar for assigning both associated key + codes. E.G `control` corresponds to both `leftcontrol` and `rightcontrol` + when assigned instead of just the former. (Note: this also means it is no + longer a valid right hand value) + + - Fix v1 overload regression (#74) + # v2.0.1-beta - Added + syntax to macros to allow for simultaenously held keys. diff --git a/Makefile b/Makefile index 63caa7c..8f147e1 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ LOCK_FILE="/var/lock/keyd.lock" LOG_FILE="/var/log/keyd.log" CONFIG_DIR="/etc/keyd" -VERSION=2.0.1-beta +VERSION=2.1.0-beta GIT_HASH=$(shell git describe --no-match --always --abbrev=40 --dirty) CFLAGS+=-DVERSION=\"$(VERSION)\" \