Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
juzzlin committed Dec 30, 2017
1 parent 1b0f7f2 commit a4729f8
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.0.1
-----

* Editor: use qSetGlobalQHashSeed with Qt 5.6+
* Properly check for empty version in mxeWindowsBuild.sh

2.0.0
-----

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ endif()
# Global game version
set(VERSION_MAJOR "2")
set(VERSION_MINOR "0")
set(VERSION_PATCH "0")
set(VERSION_PATCH "1")
set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")

option(ReleaseBuild "This should be used when creating DEB and RPM packages." OFF)
Expand Down
16 changes: 16 additions & 0 deletions RELEASES
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2.0.1
=====

A bug fix release to fix build on Qt 5.6+

Bug fixes:

* Editor: use qSetGlobalQHashSeed with Qt 5.6+

qt_qhash_seed is no more exported in recent Qt 5.9.x versions, so use
the public functions for it available since Qt 5.6.

Other:

* Properly check for empty version in mxeWindowsBuild.sh

2.0.0
=====

Expand Down
7 changes: 7 additions & 0 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
dustrac (2.0.1-1) xenial; urgency=medium

* Editor: use qSetGlobalQHashSeed with Qt 5.6+
* Properly check for empty version in mxeWindowsBuild.sh

-- Jussi Lind <[email protected]> Sat, 30 Dec 2017 15:08:11 +0200

dustrac (2.0.0-1) xenial; urgency=medium

* CMake: Set C++ standard with set_property()
Expand Down
2 changes: 1 addition & 1 deletion packaging/windows/dustrac.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
!define DESCRIPTION "A traditional top-down racing game."
!define VERSIONMAJOR 2
!define VERSIONMINOR 0
!define VERSIONBUILD 0
!define VERSIONBUILD 1
!define HELPURL "http://juzzlin.github.io/DustRacing2D/"
!define UPDATEURL "https://github.com/juzzlin/DustRacing2D/releases"
!define ABOUTURL "http://juzzlin.github.io/DustRacing2D/"
Expand Down
2 changes: 1 addition & 1 deletion src/editor/editor.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
TEMPLATE = app
TARGET = dustrac-editor

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

# Qt version check
Expand Down
2 changes: 1 addition & 1 deletion src/game/game.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
TEMPLATE = app
TARGET = dustrac-game

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

# Qt version check
Expand Down

0 comments on commit a4729f8

Please sign in to comment.