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)\" \