Update version and changelog for 1.5.1

This commit is contained in:
Darren Eberly
2021-07-09 21:06:22 -04:00
parent ed3159373d
commit 5dd7644387
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.1] - 2021-07-09
This release contains two bugfixes:
- Pinned minimum attrs version to usage of `kw_only` which was introduced in 18.2.0. See https://github.com/Beefy-Swain/pytiled_parser/pull/39
- Fixed color parsing to be correct. Tiled saves it's colors in either RGB or ARGB format. We were previously parsing RGB correctly, but if an alpha value was present it would be parsed if it were RGBA and so all the values would be offset by one.
## [1.5.0] - 2021-05-16
This release contains several new features. As of this release pytiled-parser supports 100% of Tiled's feature-set as of Tiled 1.6.

View File

@@ -1,3 +1,3 @@
"""pytiled_parser version"""
__version__ = "1.5.0"
__version__ = "1.5.1"