diff --git a/README.md b/README.md index 291de4b5..fabdb80e 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,8 @@ You can install the stable version on PyCharm's `Marketplace` (Preference -> Plu * (After PyCharm 2020.1 and this plugin version 0.1.0, PyCharm treats `pydantic.dataclasses.dataclass` as third-party dataclass.) * Exclude a feature which is inserting unfilled arguments with a QuickFix +### pydantic.create_model [experimental] +* Support minimum features for a model which is created by create_model ## Contribute diff --git a/docs/index.md b/docs/index.md index 798a0d9e..f06f3443 100644 --- a/docs/index.md +++ b/docs/index.md @@ -26,6 +26,9 @@ I got interviewed about this plugin for [JetBrains' PyCharm Blog](https://blog.j * (After PyCharm 2020.1 and this plugin version 0.1.0, PyCharm treats `pydantic.dataclasses.dataclass` as third-party dataclass.) * Exclude a feature which is inserting unfilled arguments with a QuickFix +### pydantic.create_model [experimental] +* Support minimum features for a model which is created by create_model + ## Demo ![demo1](demo1.gif) diff --git a/resources/META-INF/plugin.xml b/resources/META-INF/plugin.xml index 18b26367..c1d43e34 100644 --- a/resources/META-INF/plugin.xml +++ b/resources/META-INF/plugin.xml @@ -1,9 +1,14 @@ com.koxudaxi.pydantic Pydantic - 0.1.10 + 0.1.11 Koudai Aono @koxudaxi version 0.1.11 +

Features

+

version 0.1.10

BugFixes