Skip to content

Commit a83055b

Browse files
committed
4.4 release!
1 parent a1b6364 commit a83055b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ endif()
7979
# To insure consistency please ensure the SAME of the first two values are also
8080
# assigned to the "VERSION" and "BUILD" variables in the native qmake project
8181
# file, which is NOW called: ./src/mudlet.pro
82-
set(APP_VERSION 4.3.0)
82+
set(APP_VERSION 4.4.0)
8383
if(DEFINED ENV{MUDLET_VERSION_BUILD} AND NOT $ENV{MUDLET_VERSION_BUILD} STREQUAL "")
8484
set(APP_BUILD $ENV{MUDLET_VERSION_BUILD})
8585
else()
86-
set(APP_BUILD "-dev")
86+
set(APP_BUILD "")
8787
endif()
8888

8989
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})

src/mudlet.pro

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ TEMPLATE = app
9999
########################## Version and Build setting ###########################
100100
# Set the current Mudlet Version, unfortunately the Qt documentation suggests
101101
# that only a #.#.# form without any other alphanumberic suffixes is required:
102-
VERSION = 4.3.0
102+
VERSION = 4.4.0
103103

104104
# if you are distributing modified code, it would be useful if you
105105
# put something distinguishing into the MUDLET_VERSION_BUILD environment
@@ -111,7 +111,7 @@ isEmpty( BUILD ) {
111111
# "-dev" for the development build
112112
# "-public-test-build" for the public test build
113113
# "" for the release build
114-
BUILD = "-dev"
114+
BUILD = ""
115115
}
116116

117117
# Changing BUILD and VERSION values affects: ctelnet.cpp, main.cpp, mudlet.cpp

0 commit comments

Comments
 (0)