Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 1.3.7 #466

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ cmake_minimum_required(VERSION 3.28)
if (WIN32)
set(CMAKE_TOOLCHAIN_FILE "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/vcpkg/scripts/buildsystems/vcpkg.cmake")
endif()
project(Swiftray VERSION 1.3.6)
project(Swiftray VERSION 1.3.7)

set(VERSION_MAJOR 1)
set(VERSION_MINOR 3)
set(VERSION_BUILD 6)
set(VERSION_BUILD 7)
set(VERSION_BETA 0) #x (e.g. 0,1,2,...)
set(VERSION_SUFFIX "") # e.g. empty("") or "-beta.x"
set(PROJECT_VERSION_STR "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BUILD}${VERSION_SUFFIX}")
Expand Down
6 changes: 3 additions & 3 deletions src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
#define PACKAGE "Swiftray"

/* Version number of Wireshark and associated utilities */
#define PROJECT_VERSION_STR "1.3.6"
#define PROJECT_VERSION_STR "1.3.7"
#define VERSION_MAJOR 1
#define VERSION_MINOR 3
#define VERSION_BUILD 6
#define VERSION_BUILD 7
#define VERSION_BETA 0
#define VERSION_SUFFIX ""
#define SENTRY_DSN "https://[email protected]/6586888"
#define VERSION_STRING "1.3.6"
#define VERSION_STRING "1.3.7"

/* Define to 1 if you have the Sparkle or WinSparkle library */
/* #undef HAVE_SOFTWARE_UPDATE */
Expand Down
2 changes: 1 addition & 1 deletion swiftray.pro
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ TARGET = Swiftray

VERSION_MAJOR = 1
VERSION_MINOR = 3
VERSION_BUILD = 6
VERSION_BUILD = 7
VERSION_BETA = 0
VERSION_SUFFIX = "" # empty string or "-beta.X"
VERSION = $${VERSION_MAJOR}.$${VERSION_MINOR}.$${VERSION_BUILD}$${VERSION_SUFFIX}
Expand Down