diff --git a/CHANGELOG.md b/CHANGELOG.md index d4890fa..310d8e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## Unreleased +## [0.11.1] - 2023-08-02 + +### Changed + +- Various maintenance and tooling tweaks. Includes switching to [PyPI trusted publishing](https://docs.pypi.org/trusted-publishers/using-a-publisher/) +- Added Wagtail 5.1 to the testing matrix + ## [0.11.0] - 2023-04-22 ### Added @@ -99,7 +106,8 @@ - Restructure app, refactor code. Add depreciation warnings. -[unreleased]: https://github.com/torchbox/wagtail-markdown/compare/v0.11.0...HEAD +[unreleased]: https://github.com/torchbox/wagtail-markdown/compare/v0.11.1...HEAD +[0.11.1]: https://github.com/torchbox/wagtail-markdown/compare/v0.11.0...v0.11.1 [0.11.0]: https://github.com/torchbox/wagtail-markdown/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/torchbox/wagtail-markdown/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/torchbox/wagtail-markdown/compare/0.8.0...v0.9.0 diff --git a/Makefile b/Makefile index 66367dd..2271257 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ clean: ## 🗑️ - Removes pycache and test media package-setup: @echo "📦 - Packaging for PyPI" - python3 setup.py clean --all sdist bdist_wheel + flit build package: clean package-setup ## 📦 - Package for PyPI diff --git a/README.md b/README.md index a584a76..b44ad4c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build status](https://img.shields.io/github/actions/workflow/status/torchbox/wagtail-markdown/ci.yml?branch=main)](https://github.com/torchbox/wagtail-markdown/actions) [![PyPI](https://img.shields.io/pypi/v/wagtail-markdown.svg)](https://pypi.org/project/wagtail-markdown/) [![black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) -[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/psf/black) +[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/torchbox/wagtail-markdown/main.svg)](https://results.pre-commit.ci/latest/github/torchbox/wagtail-markdown/main) diff --git a/src/wagtailmarkdown/__init__.py b/src/wagtailmarkdown/__init__.py index c5d6124..434ec91 100755 --- a/src/wagtailmarkdown/__init__.py +++ b/src/wagtailmarkdown/__init__.py @@ -1,2 +1,2 @@ -VERSION = (0, 11, 0) +VERSION = (0, 11, 1) __version__ = ".".join(map(str, VERSION))