From a0bc45fa0b0ed3e9bc31c37cb27593bd71f3b4d8 Mon Sep 17 00:00:00 2001 From: Alejandro Perea Date: Fri, 14 Jun 2024 12:00:48 +0200 Subject: [PATCH] 0.12.0 release (#299) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Prepare for new release * Update changelog * Fixed header level in a few places --------- Co-authored-by: Thorbjørn Lindeijer --- CHANGELOG.md | 14 +++++++------- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1c5c9e..cdbf608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased (next)] +## [0.12.0] ### Added - Add `text`, `width` and `height` members to `ObjectShape::Text`. (#278) - Implement `ResourceReader` for appropiate functions. (#272) **Read the README's FAQ for more information about this change.** @@ -13,11 +13,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Underlying reader for maps now uses a BufReader, which should give a large performance boost. (#286) -- Update `base64` to `0.22.1`. -- Update `libflate` to `2.1.0`. -- Update `zstd` to `0.13.1`. +- Update `base64` to `0.22.1`. (#294) +- Update `libflate` to `2.1.0`. (#294) +- Update `zstd` to `0.13.1`. (#294) -## Fixed +### Fixed - `ObjectShape::Text::kerning`'s default value, which should have been set to `true` instead of `false`. (#278) - Unhandled u32 parsing panic in `decode_csv`. (#288) - Panic in `::from_str` when parsing non-ascii input. (#290) @@ -26,11 +26,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Divide by zero when parsing a tileset with height/width dimension of 0. (#292) ## [0.11.3] -## Changed +### Changed - Replace `libflate` with `flate2`. (#281) ## [0.11.2] -## Changed +### Changed - Updated `Image` docs. (#270) - Update `libflate` dependency to `2.0.0`. (#279) - Fix some doc links. (#273) diff --git a/Cargo.toml b/Cargo.toml index eec55b2..524d75b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiled" -version = "0.11.3" +version = "0.12.0" description = "A rust crate for loading maps created by the Tiled editor" categories = ["game-development"] keywords = ["gamedev", "tiled", "tmx", "map"] diff --git a/README.md b/README.md index 1d6a289..48a2848 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # rs-tiled ```toml -tiled = "0.11.2" +tiled = "0.12.0" ``` [![Rust](https://github.com/mapeditor/rs-tiled/actions/workflows/rust.yml/badge.svg)](https://github.com/mapeditor/rs-tiled/actions/workflows/rust.yml)