Skip to content

Commit

Permalink
Prepare release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed Feb 24, 2024
1 parent 66eca2e commit ac72841
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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",
Expand All @@ -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"
Expand Down

0 comments on commit ac72841

Please sign in to comment.