From ac72841b0776370555c25fcef07c09c8de5ee00b Mon Sep 17 00:00:00 2001 From: Viicos <65306057+Viicos@users.noreply.github.com> Date: Sat, 24 Feb 2024 18:17:29 +0100 Subject: [PATCH] Prepare release `0.2.0` --- CHANGELOG.md | 9 +++++++++ pyproject.toml | 6 ++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3024720..0501f14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.2.0 (2024-02-24) + +Add three new rules: +- `PYD003` - *Unecessary Field call to specify a default value* +- `PYD004` - *Default argument specified in annotated* +- `PYD005` - *Field name overrides annotation* + +- Drop support for Python 3.8 + ## 0.1.0.post0 (2024-02-23) - Add missing `readme` metadata entry diff --git a/pyproject.toml b/pyproject.toml index c9c46ee..2dc5b09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "flake8-pydantic" -version = "0.1.0.post0" +version = "0.2.0" description = "A flake8 plugin to check Pydantic related code." readme = "README.md" authors = [ @@ -25,6 +25,9 @@ classifiers = [ "Intended Audience :: Developers", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Quality Assurance", + "Framework :: Flake8", + "Framework :: Pydantic", + "Framework :: Pydantic :: 2", ] dependencies = [ "flake8", @@ -36,7 +39,6 @@ license = {file = "LICENSE"} Homepage = "https://github.com/Viicos/flake8-pydantic" Source = "https://github.com/Viicos/flake8-pydantic" Changelog = "https://github.com/Viicos/flake8-pydantic/blob/main/CHANGELOG.md" -Documentation = "https://viicos.github.io/flake8-pydantic/" [project.entry-points."flake8.extension"] PYD = "flake8_pydantic:Plugin"