Skip to content

Commit

Permalink
Bumped version to 1.3.1 and updated NEWS.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn committed Nov 20, 2019
1 parent af796d4 commit 5333aca
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### Tiled 1.3.1 (20 November 2019)

* Added reloading of object types when changed externally (by Jacob Coughenour, #2674)
* Added a status bar to the startup screen
* Made the shortcuts for the tools configurable (#2666)
* Made Undo/Redo shortcuts configurable (#2669)
* Fixed importing of keyboard settings (.kms files) (#2671)
* Fixed small window showing up on startup for a split second
* Windows: Fixed the shipped version of OpenSSL (fixes new version notification)
* Tiled Quick: Don't compile/install by default (#2673)

### Tiled 1.3.0 (13 November 2019)

* Added support for extending Tiled with JavaScript (#949)
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
clone_depth: 200
version: '1.2.{build}'
version: '1.3.{build}'

cache:
- C:\Users\appveyor\.m2
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# The short X.Y version.
version = '1.3'
# The full version, including alpha/beta/rc tags.
release = '1.3.0'
release = '1.3.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion tiled.pri
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Initialize the version
isEmpty(TILED_VERSION):TILED_VERSION = "1.3.0"
isEmpty(TILED_VERSION):TILED_VERSION = "1.3.1"

# See the README file for instructions about setting the install prefix.
isEmpty(PREFIX):PREFIX = /usr/local
Expand Down
2 changes: 1 addition & 1 deletion tiled.qbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Project {
qbsSearchPaths: "qbs"
minimumQbsVersion: "1.8"

property string version: Environment.getEnv("TILED_VERSION") || "1.3.0";
property string version: Environment.getEnv("TILED_VERSION") || "1.3.1";
property bool snapshot: Environment.getEnv("TILED_SNAPSHOT")
property bool release: Environment.getEnv("TILED_RELEASE")
property bool installHeaders: false
Expand Down

0 comments on commit 5333aca

Please sign in to comment.