Skip to content

Commit

Permalink
Release version 2.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
epasveer committed Mar 18, 2024
1 parent 7e35685 commit fae6033
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@

# Seer Change Log

## [2.4beta] - 2023-XX-XX
* Prepare for the 2.4 release cycle.
## [2.4] - 2024-03-18
* Changed main icon to a more license friendly one.
All icons are now GPLv3, CC3.0, or CC4.0
* Fixed string compares for breakpoint conditions (#184)
Expand All @@ -14,6 +13,8 @@
* Added UTF-8,16,32 support in the Memory Visualizer.
* Added an internal "dark" and "light" theme via the View->Style menu.
* Added option to open the current source file in an external editor.
* Fixed saving of RR parameters in config dialog.
* Sped up some visualization views.

## [2.3] - 2023-11-19
* In the margins of the source windows, allow CTRL+DoubleClick to do a quick RunToLine or RunToAddress.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Requirements
* Linux
* C++17
* gdb with "mi" interpreter (check by running: `gdb --interpreter=mi`)
* CMake (3.10 or newer)
* CMake (3.1.0 or newer)
* QT6
* When building Seer from source, you will need the QT6 "devel" packages installed on your system for your distribution.
* Core
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.4beta) UNRELEASED; urgency=medium
seergdb (2.4) UNRELEASED; urgency=medium

* Release Seer version 2.4beta
* Release Seer version 2.4

-- Ernie Pasveer <[email protected]> Sun, 11 Nov 2023 22:18:38 +0200
-- Ernie Pasveer <[email protected]> Mon, 18 Mar 2024 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.4.0 LANGUAGES CXX)
project(seergdb VERSION 2.4 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 @@ -11,7 +11,7 @@
// Increment this with every release on GitHub.
// See scripts/change_versionnumber
//
#define SEER_VERSION "2.4beta"
#define SEER_VERSION "2.4"

namespace Seer {

Expand Down

0 comments on commit fae6033

Please sign in to comment.