Skip to content

Commit c3a74eb

Browse files
authored
Merge pull request #466 from flux3dp/update-1.3.7
Update version to 1.3.7
2 parents c2d6e5e + afee0bd commit c3a74eb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ cmake_minimum_required(VERSION 3.28)
22
if (WIN32)
33
set(CMAKE_TOOLCHAIN_FILE "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/vcpkg/scripts/buildsystems/vcpkg.cmake")
44
endif()
5-
project(Swiftray VERSION 1.3.6)
5+
project(Swiftray VERSION 1.3.7)
66

77
set(VERSION_MAJOR 1)
88
set(VERSION_MINOR 3)
9-
set(VERSION_BUILD 6)
9+
set(VERSION_BUILD 7)
1010
set(VERSION_BETA 0) #x (e.g. 0,1,2,...)
1111
set(VERSION_SUFFIX "") # e.g. empty("") or "-beta.x"
1212
set(PROJECT_VERSION_STR "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BUILD}${VERSION_SUFFIX}")

src/config.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
#define PACKAGE "Swiftray"
1010

1111
/* Version number of Wireshark and associated utilities */
12-
#define PROJECT_VERSION_STR "1.3.6"
12+
#define PROJECT_VERSION_STR "1.3.7"
1313
#define VERSION_MAJOR 1
1414
#define VERSION_MINOR 3
15-
#define VERSION_BUILD 6
15+
#define VERSION_BUILD 7
1616
#define VERSION_BETA 0
1717
#define VERSION_SUFFIX ""
1818
#define SENTRY_DSN "https://[email protected]/6586888"
19-
#define VERSION_STRING "1.3.6"
19+
#define VERSION_STRING "1.3.7"
2020

2121
/* Define to 1 if you have the Sparkle or WinSparkle library */
2222
/* #undef HAVE_SOFTWARE_UPDATE */

swiftray.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ TARGET = Swiftray
2424

2525
VERSION_MAJOR = 1
2626
VERSION_MINOR = 3
27-
VERSION_BUILD = 6
27+
VERSION_BUILD = 7
2828
VERSION_BETA = 0
2929
VERSION_SUFFIX = "" # empty string or "-beta.X"
3030
VERSION = $${VERSION_MAJOR}.$${VERSION_MINOR}.$${VERSION_BUILD}$${VERSION_SUFFIX}

0 commit comments

Comments
 (0)