Skip to content

Commit

Permalink
ci: Bump version to 7.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Feb 22, 2025
1 parent 0cff701 commit 09da4df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ option(USE_LIBMPEG2 "Use LibMPEG2" ON)
## Determine proper semantic version
set(VERSION_MAJOR "7")
set(VERSION_MINOR "0")
set(VERSION_PATCH "4")
set(VERSION_PATCH "5")
set(VERSION_PRE_RELEASE "")

set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
Expand Down
1 change: 1 addition & 0 deletions packaging/linux/Amiberry.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
</screenshot>
</screenshots>
<releases>
<release version="v7.0.5" date="2025-02-22"/>
<release version="v7.0.4" date="2025-02-08"/>
<release version="v7.0.3" date="2025-02-06"/>
<release version="v7.0.2" date="2025-02-02"/>
Expand Down
2 changes: 1 addition & 1 deletion src/include/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#define UAEMAJOR 7
#define UAEMINOR 0
#define UAESUBREV 4
#define UAESUBREV 5

#define MAX_AMIGADISPLAYS 1

Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
#include "keyboard.h"

// Special version string so that AmigaOS can detect it
static constexpr char __ver[40] = "$VER: Amiberry v7.0.4 (2025-02-08)";
static constexpr char __ver[40] = "$VER: Amiberry v7.0.5 (2025-02-22)";

long int version = 256 * 65536L * UAEMAJOR + 65536L * UAEMINOR + UAESUBREV;

Expand Down

0 comments on commit 09da4df

Please sign in to comment.