From f208b9b5045118905c814b5c9c4a7a6f706ec386 Mon Sep 17 00:00:00 2001 From: Darren Eberly Date: Thu, 11 Aug 2022 00:28:52 -0400 Subject: [PATCH] Final pypi publishing job --- .github/workflows/publish-to-pypi.yml | 2 +- CHANGELOG.md | 4 ++++ pytiled_parser/version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 0dde579..3126f43 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -4,7 +4,7 @@ on: push jobs: build-n-publish: - name: Build and public Python distribution to PyPI and TestPyPI + name: Build and Publish Python distribution to PyPI and TestPyPI runs-on: ubuntu-latest steps: - uses: actions/checkout@master diff --git a/CHANGELOG.md b/CHANGELOG.md index 223ac1b..dcb3de4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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.1.2] - 2022-08-10 + +This version does not make any changes to the library. The project has moved to using Github Actions to publishing the distribution to PyPI. We have made this release to fully test the system and ensure it is functional for future releases. + ## [2.1.1] - 2022-08-10 This version contains just one bug fix. Previously if a map or other object in the TMX format contained a [Class property](https://doc.mapeditor.org/en/stable/manual/custom-properties/#custom-types) which was added in Tiled 1.8, then pytiled-parser would crash. diff --git a/pytiled_parser/version.py b/pytiled_parser/version.py index d0f5633..05c4f73 100644 --- a/pytiled_parser/version.py +++ b/pytiled_parser/version.py @@ -1,3 +1,3 @@ """pytiled_parser version""" -__version__ = "2.1.1" +__version__ = "2.1.2"