From 91ecb7f6b6b262bab2187ba503a44429c79da3d2 Mon Sep 17 00:00:00 2001 From: Darren Eberly Date: Wed, 28 Jul 2021 22:42:49 -0400 Subject: [PATCH] Update changelog and version for 1.5.2 --- CHANGELOG.md | 10 ++++++++++ pytiled_parser/version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71fe794..3f522b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [1.5.2] - 2021-07-28 + +This release contains some re-working to properly support templates. + +Previously templates were supposedly fully supported, however they were broken for tile objects. Now there should be out of the box support for auto-loading tile objects from templates. Regardless of where the tileset is defined. See Issue https://github.com/benjamin-kirkbride/pytiled_parser/issues/41 for details + +There are no API changes as far as usage is concerned, these were all internal changes to properly support the feature. + +This release also contains some minor fixes to docstrings and typing annotations/linting problems. + ## [1.5.1] - 2021-07-09 This release contains two bugfixes: diff --git a/pytiled_parser/version.py b/pytiled_parser/version.py index 6806194..a1d6e80 100644 --- a/pytiled_parser/version.py +++ b/pytiled_parser/version.py @@ -1,3 +1,3 @@ """pytiled_parser version""" -__version__ = "1.5.1" +__version__ = "1.5.2"