Skip to content

Commit

Permalink
Update CHANGELOG for 2.3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
epasveer committed Nov 20, 2023
1 parent a8f9262 commit 12a00ec
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@

# 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.
* Fixed bug specifying path to "rr" debugger.
* 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.
Expand Down
6 changes: 3 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Thu, 7 Sep 2023 22:18:38 +0200
-- Ernie Pasveer <[email protected]> Sun, 11 Nov 2023 22:18:38 +0200

2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion src/SeerUtl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down

0 comments on commit 12a00ec

Please sign in to comment.