Bump version number

This commit is contained in:
Cubitect 2024-10-07 20:20:14 +02:00
parent 933b320d3f
commit cb9b3e1bbc
2 changed files with 6 additions and 2 deletions

View File

@ -39,6 +39,10 @@ jobs:
working-directory: ${{env.SOURCE_DIR}}
run: |
macdeployqt ${{env.PROG}}.app -dmg -no-plugins
- name: Test
working-directory: ${{env.SOURCE_DIR}}
run: |
./${{env.PROG}}.app/Contents/MacOS/${{env.PROG}} --version
otool -L ${{env.PROG}}.app/Contents/MacOS/${{env.PROG}}

View File

@ -5,8 +5,8 @@
#include <QString>
#define VERS_MAJOR 4
#define VERS_MINOR 0
#define VERS_PATCH 1 // negative patch number designates a development version
#define VERS_MINOR 1
#define VERS_PATCH 0 // negative patch number designates a development version
// returns +1 if newer, -1 if older and 0 if equal
inline int cmpVers(int major, int minor, int patch)