From 1fcd47765f4a9202e9dc1e7bdc7168e0002d0efc Mon Sep 17 00:00:00 2001 From: Ivan Drinchev Date: Fri, 12 Nov 2021 11:35:57 +0100 Subject: [PATCH] Release v0.0.8 --- CHANGELOG.md | 4 ++++ README.md | 10 ++++++---- phook.c | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8858b8a..5979a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.0.8 + +- Fix for macOS Monterey. [@martinlau](https://github.com/martinlau) + ## 0.0.7 - Compiler optimization is removed, since it creates broken binary with clang diff --git a/README.md b/README.md index 0dc3b7b..1e09fd9 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,14 @@ Mandatory arguments to long options are mandatory for short options too You need macOS for this to work. ``` -wget https://github.com/drinchev/phook/archive/v0.0.7.tar.gz -tar -xzf v0.0.7.tar.gz -cd phook-0.0.7 +wget https://github.com/drinchev/phook/archive/v0.0.8.tar.gz +tar -xzf v0.0.8.tar.gz +cd phook-0.0.8 make install ``` -Alternative option would be to use [TheFox](https://github.com/TheFox)'s [homebrew tap](https://github.com/TheFox/homebrew-brewery) : +Alternative option would be to +use [TheFox](https://github.com/TheFox)'s [homebrew tap](https://github.com/TheFox/homebrew-brewery) : ``` brew tap thefox/brewery @@ -42,6 +43,7 @@ See [examples](https://github.com/drinchev/phook/tree/master/examples). - [@jayrhynas](https://github.com/jayrhynas) - [@shishirchawla](https://github.com/shishirchawla) +- [@martinlau](https://github.com/martinlau) --- diff --git a/phook.c b/phook.c index 96af82e..e81a504 100644 --- a/phook.c +++ b/phook.c @@ -14,7 +14,7 @@ #include #define PROGRAM_NAME "phook" -#define PROGRAM_VERSION "0.07" +#define PROGRAM_VERSION "0.08" const char *after = NULL;