This is the first minor release of `django-pydantic-field`, with field-level type definitions:
python
class Foo(pydantic.BaseModel):
bar: int
class MyModel(models.Model):
meta: list[Foo] = SchemaField(schema=list[Foo])
In order to support this, I had to introduce a breaking changes in field api defintion:
all `Pydantic`-prefixed classes should be used without this prefix, e.g:
python
PydanticSchemaField -> SchemaField
PydanticSchemaRenderer -> SchemaRenderer
...