diff --git a/CHANGELOG.md b/CHANGELOG.md index aaafeb29..76246679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Seer Change Log -## [2.1beta] - 2023-XX-XX +## [2.1] - 2023-08-23 * Add Execution dialog to record breakpoint events. This solves the problem of too many break/error dialogs to "swat away" as the program is debugged. * Add a method to add/change gdb commands to execute when a breakpoint (breakpoint, watchpoint, catchpoint) is reached. diff --git a/debian/changelog b/debian/changelog index d6933dc5..a26889ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -seergdb (2.1beta) UNRELEASED; urgency=medium +seergdb (2.1) UNRELEASED; urgency=medium * Seer is Qt6 based. Still can compile with Qt5. - -- Ernie Pasveer Sun, 03 Jun 2023 22:18:38 +0200 + -- Ernie Pasveer Sun, 12 Aug 2023 22:18:38 +0200 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index db5a0499..e8ef3d41 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1.0) -project(seergdb VERSION 2.1.0 LANGUAGES CXX) +project(seergdb VERSION 2.1 LANGUAGES CXX) set(PROJECT_NAME seergdb) diff --git a/src/SeerUtl.cpp b/src/SeerUtl.cpp index e7a0892c..56c7c78f 100644 --- a/src/SeerUtl.cpp +++ b/src/SeerUtl.cpp @@ -9,7 +9,7 @@ // Increment this with every release on GitHub. // See scripts/change_versionnumber // -#define SEER_VERSION "2.1beta" +#define SEER_VERSION "2.1" namespace Seer {