Skip to content

Commit

Permalink
Update version and changelog for 2.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Cleptomania committed Oct 3, 2024
1 parent dd4cd1d commit c8e7bbd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7] - 2024-10-03

Fixes a bug when using the TMX format, where multi-line String properties would not be correctly parsed, as they are placed differently in the XML than single line strings. (#75)

The Tiled docs also state that this multi-line format may in the future be used for all property values, so this change will help to futureproof against that.

## [2.2.6] - 2024-08-22

Fixes a bug where properties did not load as expected on objects when using object templates. As of this release, the functionality is such that if properties are defined on both an object, and it's template, they will both end up on the resulting object, with the ones defined directly on the object overriding any properties that have the same name from the template. It does not compare types, so a String property with the name `test` would override a number property with the name `test`, as an example. Comparing types could be done in the future, but is likely more complicated than it's worth doing right now.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pytiled_parser"
version = "2.2.6"
version = "2.2.7"
description = "A library for parsing Tiled Map Editor maps and tilesets"
readme = "README.md"
authors = [
Expand Down

0 comments on commit c8e7bbd

Please sign in to comment.