Update version and changelog for 1.5.3

This commit is contained in:
Darren Eberly
2021-08-28 12:02:50 -04:00
parent d959bbfd56
commit 82122c3e3d
2 changed files with 8 additions and 1 deletions

View File

@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased]
## [1.5.3] - 2021-08-28
Just a small bugfix in this release. Previously if a layer's offset was (0, 0), the values for it would not appear in the JSON file, so the `offset` value in the
Layer class would be `None`. This can cause some unexpected behavior in engines or games, and puts the responsibility of checking if this value exists onto the game or engine using it.
This value has been changed to default to (0, 0) if it is not present in the JSON so that games can apply it easily in one line and always get the same result without error.
## [1.5.2] - 2021-07-28
This release contains some re-working to properly support templates.

View File

@@ -1,3 +1,3 @@
"""pytiled_parser version"""
__version__ = "1.5.2"
__version__ = "1.5.3"