From 975ec0f1090f2e3444210f86628bc6f9a72e95e6 Mon Sep 17 00:00:00 2001 From: Simon Garrelou Date: Wed, 7 Jun 2023 16:37:25 +0200 Subject: [PATCH] Bump version to 1.2.0 --- CHANGELOG.md | 7 +++++++ CMakeLists.txt | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc82bd9..f82e30f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 1.2.O + +* Improve the "full run" functionality + * Speed up the execution by stepping through 100,000 states at a time + * Go through each thread state +* Add a "go to position" button to the toolbar (shortcut Ctrl+Shift+G) + # 1.1.0 * Add function tracing * Integrates with TTD's "CallRet callback" feature, allowing us to trace every `call` and `ret` instruction diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f21429..c5669d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11) # Project -project(ttddbg LANGUAGES CXX VERSION 1.1.0) +project(ttddbg LANGUAGES CXX VERSION 1.2.0) # Opions option(BUILD_TESTS "Build test programs" OFF)