From 248050ce7466f8405177f76ed79ae58b0f304bd3 Mon Sep 17 00:00:00 2001 From: Darren Eberly Date: Fri, 10 Mar 2023 18:08:58 -0500 Subject: [PATCH] Changelog and Version change for 2.2.2 --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70816de..b433f59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +## [2.2.2] - 2023-03-10 + +Switched to `pyproject.toml` for project setup. This should have no impact on users unless you are on a very old version of pip. If pip fails to install pytiled-parser, please try updating pip. + +Fixed a bug in the TMX format where overriding or adding extra elements/attributes to object templates would not be applied. Only the id and the x, y position would be used. Now any overriden values(including properties) should be applied to the template. This bug did not exist in the JSON format, however there was no test coverage for this scenario in either format, that has since been added. + ## [2.2.1] - 2023-01-16 Added official support for Python 3.11. No changes were actually made to do this, and most all previous versions of pytiled-parser should work fine with 3.11. We are just now including 3.11 in the matrix of Python versions we run tests for. diff --git a/pyproject.toml b/pyproject.toml index cf8d582..af8feaa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pytiled_parser" -version = "2.2.1" +version = "2.2.2" description = "A library for parsing Tiled Map Editor maps and tilesets" readme = "README.md" authors = [