Update version and CHANGELOG for 1.2.0

This commit is contained in:
Darren Eberly
2021-02-21 15:50:31 -05:00
parent 6df9b4af61
commit 9acda39a5d
2 changed files with 7 additions and 1 deletions

View File

@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased]
## [1.2.0] - 2021-02-21
### Changed
- Made zstd support optional. zstd support can be installed with `pip install pytiled-parser[zstd]`. PyTiled will raise a ValueError explaining to do this if you attempt to use zstd compression without support for it installed. This change is due to the zstd library being a heavy install and a big dependency to make mandatory when most people probably won't ever use it, or can very easily convert to using gzip or zlib for compression.
## [1.1.0] - 2021-02-21
### Added

View File

@@ -1,3 +1,3 @@
"""pytiled_parser version"""
__version__ = "1.1.0"
__version__ = "1.2.0"