From 12a00ec89f9b1e559b239f6e810c32e1dd5d8bde Mon Sep 17 00:00:00 2001 From: Ernie Pasveer Date: Sun, 19 Nov 2023 18:03:24 -0600 Subject: [PATCH] Update CHANGELOG for 2.3 release. --- CHANGELOG.md | 10 ++++++++-- debian/changelog | 6 +++--- src/CMakeLists.txt | 2 +- src/SeerUtl.cpp | 2 +- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e024ecf..d8ef21c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,7 @@ # Seer Change Log -## [2.3beta] - 2023-XX-XX -* Perpare for the 2.3 release cycle. +## [2.3] - 2023-11-19 * In the margins of the source windows, allow CTRL+DoubleClick to do a quick RunToLine or RunToAddress. * Add --gdb-program and --gdb-arguments to command line to override settings from Seer's config. * Fixed a rare bug with blank lines from gdb causing a segv in GdbMonitor. @@ -10,6 +9,13 @@ * Add option to reload source file if it changes. * Tighten up the layout by removing some needless whitespace. * Move gdb messages to a tab in the breakpoints window. + - Options to raise on every message, never, or important messages. +* Add C++ level (11 or 17) depending on qt5 or qt6 compile. +* Fixed up column resizing for the Variable logger (#173) +* Use monspace font, where it makes sense (#175) +* Allow copy to clipboard (#176) +* Fixed hovering a variable name and value (#179) +* Add nested struct viewing in "locals", "arguments", "logger", and "tracker" tabs. (#180) ## [2.2] - 2023-09-07 * Fixed infinite loop when starting with RR mode. diff --git a/debian/changelog b/debian/changelog index 8de68719..83ef178b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -seergdb (2.3beta) UNRELEASED; urgency=medium +seergdb (2.3) UNRELEASED; urgency=medium - * Prepare for the 2.3 release cycle. + * Release Seer version 2.3 - -- Ernie Pasveer Thu, 7 Sep 2023 22:18:38 +0200 + -- Ernie Pasveer Sun, 11 Nov 2023 22:18:38 +0200 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6cf390ba..6459e611 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.1.0) -project(seergdb VERSION 2.3.0 LANGUAGES CXX) +project(seergdb VERSION 2.3 LANGUAGES CXX) set(PROJECT_NAME seergdb) diff --git a/src/SeerUtl.cpp b/src/SeerUtl.cpp index 80689615..53299f54 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.3beta" +#define SEER_VERSION "2.3" namespace Seer {