From 464454b02b7d99950931406621bfa8e0d8d36ca3 Mon Sep 17 00:00:00 2001 From: Darren Eberly Date: Tue, 12 Oct 2021 20:00:35 -0400 Subject: [PATCH] Update version and changelog for 1.5.4 --- CHANGELOG.md | 6 ++++++ pytiled_parser/version.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc8c62b..7347028 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [1.5.4] - 2021-10-12 + +Previously if only one parallax value(x or y) on a layer had been set, it would fail because pytiled-parser was assuming that if one was set then the other would be. This is not actually the case in the Tiled map file. + +The value for them now defaults to 1.0 if it is not specified in the map file(This is the Tiled default value). + ## [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 diff --git a/pytiled_parser/version.py b/pytiled_parser/version.py index d16cf06..b7bdf02 100644 --- a/pytiled_parser/version.py +++ b/pytiled_parser/version.py @@ -1,3 +1,3 @@ """pytiled_parser version""" -__version__ = "1.5.3" +__version__ = "1.5.4"