Skip to content

Commit

Permalink
Bump version to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kubo committed Oct 2, 2022
1 parent 819bb73 commit 5090f4b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.6)

project(funchook LANGUAGES C ASM)
set(PROJECT_VERSION 1.1.0)
set(PROJECT_VERSION 1.1.1)
set(PROJECT_VERSION_MAJOR 1)

include("GNUInstallDirs")
Expand Down
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,24 @@ TODO
News
----

### 1.1.1 (2022-10-02)

* More permissive check for page allocation mmap ([#25][])
* Flush instruction cache for arm64. It does nothing for intel CPU.
* Disassember engine
* Upgrade capstone to 4.0.2
* Upgrade distorm to 3.5.2
* CMakefile
* Allow user to specify FUNCHOOK_CPU explicitly ([#19][])
* Avoid polluting global include and link dirs ([#20][])
* Use target based compile options for gcc's -Wall ([#21][])
* Use ExternalProject_add to download captone only ([#30][])
* Add option FUNCHOOK_INSTALL ([#31][])
* Use "FUNCHOOK_CPU MATCHES <string>" ([#32][])
* Documentation
* added example usage from python ([#22][])
* Fix tests on Android ([#29][])

### 1.1.0 (2020-03-22)

* Arm64 Linux support. [capstone][] is used as the disassembler library on arm64.
Expand Down Expand Up @@ -238,4 +256,13 @@ itself is under the GPL.
[`CMAKE_INSTALL_PREFIX`]: https://cmake.org/cmake/help/latest/variable/CMAKE_INSTALL_PREFIX.html
[soname]: https://en.wikipedia.org/wiki/Soname
[#15]: https:/kubo/funchook/issues/15
[#19]: https:/kubo/funchook/pull/19
[#20]: https:/kubo/funchook/pull/20
[#21]: https:/kubo/funchook/pull/21
[#22]: https:/kubo/funchook/pull/22
[#25]: https:/kubo/funchook/pull/25
[#29]: https:/kubo/funchook/pull/29
[#30]: https:/kubo/funchook/pull/30
[#31]: https:/kubo/funchook/pull/31
[#32]: https:/kubo/funchook/pull/32
[`mprotect`]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/mprotect.2.html

0 comments on commit 5090f4b

Please sign in to comment.