Skip to content

Commit ab5b7d6

Browse files
committed
Bumped version to 1.2.5 and updated NEWS.md file
1 parent 0c59eee commit ab5b7d6

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

NEWS.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### Tiled 1.2.5 (9 October 2019)
2+
3+
* Fixed exporting to a file name containing multiple dots (#2149)
4+
* Fixed possible crash in AutoMapper (#2157)
5+
* Fixed crash when unloading certain plugins
6+
* Fixed duplicated entries in Objects view after grouping layers
7+
* Fixed adjacent maps within a world not being properly clickable
8+
* Fixed empty maps within a world not being clickable
9+
* Fixed handling of negative multiplierX/Y in a world file
10+
111
### Tiled 1.2.4 (15 May 2019)
212

313
* Fixed view boundaries to take into account layer offsets (#2090)

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# The short X.Y version.
5858
version = '1.2'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.2.4'
60+
release = '1.2.5'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

tiled.pri

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Initialize the version
2-
isEmpty(TILED_VERSION):TILED_VERSION = "1.2.4"
2+
isEmpty(TILED_VERSION):TILED_VERSION = "1.2.5"
33

44
# See the README file for instructions about setting the install prefix.
55
isEmpty(PREFIX):PREFIX = /usr/local

tiled.qbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Project {
77
qbsSearchPaths: "qbs"
88
minimumQbsVersion: "1.8"
99

10-
property string version: Environment.getEnv("TILED_VERSION") || "1.2.4";
10+
property string version: Environment.getEnv("TILED_VERSION") || "1.2.5";
1111
property bool sparkleEnabled: Environment.getEnv("TILED_SPARKLE")
1212
property bool snapshot: Environment.getEnv("TILED_SNAPSHOT")
1313
property bool release: Environment.getEnv("TILED_RELEASE")

0 commit comments

Comments
 (0)