Skip to content

Commit

Permalink
Update version and changelog for 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Cleptomania committed Jul 2, 2024
1 parent 47fc11c commit 19fc178
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.4] - 2024-07-01

Small change to the default text color, in Tiled the text color defaults to blac(0, 0, 0), previously in pytiled-parser if the color was not specified it would default to white(255, 255, 255). This has been changed to match Tiled's behavior [#70](https://github.com/pythonarcade/pytiled_parser/pull/70)

Added a py.typed file in order for type checkers to identify the library as being typed properly.

## [2.2.3] - 2023-05-17

Exposed tileset parsing more directly. This was possible by accessing the largely internal interfaces within pytiled_parser already, but this provides the same interface for parsing Tilesets as we have for parsing maps. You can parse a tileset by simply passing the filepath to `pytiled_parser.parse_tileset(file)` where `file` is a `pathlib.Path` object.
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.3"
version = "2.2.4"
description = "A library for parsing Tiled Map Editor maps and tilesets"
readme = "README.md"
authors = [
Expand Down

0 comments on commit 19fc178

Please sign in to comment.