From 125c9f23cc7ca7e8f82e6249b7fce0454d15afd7 Mon Sep 17 00:00:00 2001 From: Chris Antos Date: Thu, 17 Dec 2020 10:58:39 -0800 Subject: [PATCH] Update version. --- CHANGES | 4 ++++ clink/app/src/version.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 6ea5fed82..d3aa6a11f 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,10 @@ ## Releases from [chrisant996/clink](https://github.com/chrisant996/clink) fork +### v1.1.10 + +- Fixed [#32](https://github.com/chrisant996/clink/issues/32) hooking `ReadConsoleW` on Windows 7. + ### v1.1.9 - Added backward compatibility for `clink.match_display_filter`. The clink-completions/git.lua script uses it a lot, and that should all be working now. diff --git a/clink/app/src/version.h b/clink/app/src/version.h index bcf431d10..eacb4e94c 100644 --- a/clink/app/src/version.h +++ b/clink/app/src/version.h @@ -10,7 +10,7 @@ #define CLINK_VERSION_MAJOR 1 #define CLINK_VERSION_MINOR 1 -#define CLINK_VERSION_PATCH 9 +#define CLINK_VERSION_PATCH 10 #define CLINK_VERSION_STR AS_STR(CLINK_VERSION_MAJOR) ## "." ##\ AS_STR(CLINK_VERSION_MINOR) ## "." ##\ AS_STR(CLINK_VERSION_PATCH) ##\