Skip to content

Commit a4729f8

Browse files
committed
2.0.1
1 parent 1b0f7f2 commit a4729f8

File tree

7 files changed

+33
-4
lines changed

7 files changed

+33
-4
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2.0.1
2+
-----
3+
4+
* Editor: use qSetGlobalQHashSeed with Qt 5.6+
5+
* Properly check for empty version in mxeWindowsBuild.sh
6+
17
2.0.0
28
-----
39

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ endif()
1414
# Global game version
1515
set(VERSION_MAJOR "2")
1616
set(VERSION_MINOR "0")
17-
set(VERSION_PATCH "0")
17+
set(VERSION_PATCH "1")
1818
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
1919

2020
option(ReleaseBuild "This should be used when creating DEB and RPM packages." OFF)

RELEASES

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2.0.1
2+
=====
3+
4+
A bug fix release to fix build on Qt 5.6+
5+
6+
Bug fixes:
7+
8+
* Editor: use qSetGlobalQHashSeed with Qt 5.6+
9+
10+
qt_qhash_seed is no more exported in recent Qt 5.9.x versions, so use
11+
the public functions for it available since Qt 5.6.
12+
13+
Other:
14+
15+
* Properly check for empty version in mxeWindowsBuild.sh
16+
117
2.0.0
218
=====
319

packaging/debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
dustrac (2.0.1-1) xenial; urgency=medium
2+
3+
* Editor: use qSetGlobalQHashSeed with Qt 5.6+
4+
* Properly check for empty version in mxeWindowsBuild.sh
5+
6+
-- Jussi Lind <[email protected]> Sat, 30 Dec 2017 15:08:11 +0200
7+
18
dustrac (2.0.0-1) xenial; urgency=medium
29

310
* CMake: Set C++ standard with set_property()

packaging/windows/dustrac.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
!define DESCRIPTION "A traditional top-down racing game."
88
!define VERSIONMAJOR 2
99
!define VERSIONMINOR 0
10-
!define VERSIONBUILD 0
10+
!define VERSIONBUILD 1
1111
!define HELPURL "http://juzzlin.github.io/DustRacing2D/"
1212
!define UPDATEURL "https://github.com/juzzlin/DustRacing2D/releases"
1313
!define ABOUTURL "http://juzzlin.github.io/DustRacing2D/"

src/editor/editor.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
TEMPLATE = app
44
TARGET = dustrac-editor
55

6-
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.0\\\"
6+
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.1\\\"
77
QMAKE_CXXFLAGS += -std=gnu++11
88

99
# Qt version check

src/game/game.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
TEMPLATE = app
44
TARGET = dustrac-game
55

6-
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.0\\\"
6+
DEFINES += DATA_PATH=\\\"./data\\\" VERSION=\\\"2.0.1\\\"
77
QMAKE_CXXFLAGS += -O3 -std=gnu++11 -fomit-frame-pointer -finline-functions -ffast-math
88

99
# Qt version check

0 commit comments

Comments
 (0)