Skip to content

Commit

Permalink
3.17 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vadi2 authored and SlySven committed Feb 3, 2019
1 parent a43f7aa commit 467e02e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ endif()
# To insure consistency please ensure the SAME of the first two values are also
# assigned to the "VERSION" and "BUILD" variables in the native qmake project
# file, which is NOW called: ./src/mudlet.pro
set(APP_VERSION 3.16.1)
set(APP_VERSION 3.17.0)
if(DEFINED ENV{MUDLET_VERSION_BUILD} AND NOT $ENV{MUDLET_VERSION_BUILD} STREQUAL "")
SET(APP_BUILD $ENV{MUDLET_VERSION_BUILD})
else()
set(APP_BUILD "-dev")
set(APP_BUILD "")
endif()

set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
Expand Down
4 changes: 2 additions & 2 deletions src/mudlet.pro
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ TEMPLATE = app
########################## Version and Build setting ###########################
# Set the current Mudlet Version, unfortunately the Qt documentation suggests
# that only a #.#.# form without any other alphanumberic suffixes is required:
VERSION = 3.16.1
VERSION = 3.17.0

# if you are distributing modified code, it would be useful if you
# put something distinguishing into the MUDLET_VERSION_BUILD environment
Expand All @@ -157,7 +157,7 @@ BUILD = $$(MUDLET_VERSION_BUILD)
isEmpty( BUILD ) {
# Leave the value of the following empty for a release build
# i.e. the line should be "BUILD =" without quotes
BUILD = "-dev"
BUILD = ""
}

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

0 comments on commit 467e02e

Please sign in to comment.