Skip to content

Commit

Permalink
Bump project version to 0.2.0, update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ergrelet committed Jul 17, 2024
1 parent eaa5376 commit a766e12
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@

## [Unreleased]

## [0.2.0] - 2024-07-17

### Added

- Add support for ARM64 binaries
- Add new "Patch" commands that modifies original function/basic block after simplification
- Add a new NOP-like instruction removal pass

### Changed

- Previous simplification actions are now under the "Preview" subsection

## [0.1.1] - 2024-04-06

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.18)

project("triton-bn" LANGUAGES CXX)
project("triton-bn" VERSION 0.2.0 LANGUAGES CXX)

option(TRITON_BN_BUILD_TESTS "Build test executables" OFF)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ files:


## Know Limitations
* Instructions that use RIP/PC-relative addressing aren't relocated properly after simplification
* Instructions that use RIP/PC-relative addressing aren't relocated properly in preview mode
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "triton-bn",
"version": "0.1.1",
"version": "0.2.0",
"description": "Binary Ninja plugin that can be used to apply Triton's dead store eliminitation pass on basic blocks or functions.",
"homepage": "https://github.com/ergrelet/triton-bn",
"license": "Apache-2.0",
Expand Down

0 comments on commit a766e12

Please sign in to comment.