Skip to content

Commit

Permalink
Bump version to 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zerolab committed Aug 2, 2023
1 parent b9d4eac commit 4dfd010
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion src/wagtailmarkdown/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (0, 11, 0)
VERSION = (0, 11, 1)
__version__ = ".".join(map(str, VERSION))

0 comments on commit 4dfd010

Please sign in to comment.