From 9bba4e2863fda24d31f6ce8ef05c555267589a2b Mon Sep 17 00:00:00 2001 From: John Franey <1728528+johnfraney@users.noreply.github.com> Date: Mon, 4 Sep 2023 13:18:33 -0300 Subject: [PATCH] chore: prepare v0.5.0 release --- README.md | 13 ++++++++++++- pyproject.toml | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2768a65..d0a1db6 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ To enable this hook in your local repository, add the following `repo` to your ` # .pre-commit-config.yaml repos: - repo: https://github.com/johnfraney/flake8-markdown - rev: v0.4.0 + rev: v0.5.0 hooks: - id: flake8-markdown ``` @@ -62,6 +62,17 @@ Everyone interacting in the project's codebases, issue trackers, chat rooms, and ## History +### [0.5.0] - 2023-09-04 + +#### Added + +- Added CI for `python` 3.11 +- Added funding file + +#### Removed + +- Dropped support for `python` 3.7 and Pypy 3 + ### [0.4.0] - 2022-09-11 #### Added diff --git a/pyproject.toml b/pyproject.toml index 3c3ec66..24c796c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flake8-markdown" -version = "0.4.0" +version = "0.5.0" description = "Lints Python code blocks in Markdown files using flake8" authors = ["John Franey "] repository = "https://github.com/johnfraney/flake8-markdown"