Skip to content

Commit c48f614

Browse files
authored
Merge pull request #13 from django-components/jo-bump-djc-0.136
chore: bump djc 0.136
2 parents bdbab15 + f8c0508 commit c48f614

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "djc-ext-pydantic"
7-
version = "0.1.0"
7+
version = "1.0.0"
88
requires-python = ">=3.8, <4.0"
99
description = "Input validation with Pydantic for Django Components"
1010
keywords = ["pydantic", "django-components", "djc", "django", "components"]
@@ -33,7 +33,7 @@ classifiers = [
3333
"License :: OSI Approved :: MIT License",
3434
]
3535
dependencies = [
36-
'django-components>=0.131',
36+
'django-components>=0.136',
3737
'pydantic>=2.9',
3838
]
3939
license = {text = "MIT"}

requirements-ci.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ django==4.2.20
2020
# via
2121
# -r requirements-ci.in
2222
# django-components
23-
django-components==0.135
23+
django-components==0.136
2424
# via -r requirements-ci.in
2525
djc-core-html-parser==1.0.2
2626
# via django-components

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ django==4.2.20
2626
# via
2727
# -r requirements-dev.in
2828
# django-components
29-
django-components==0.135
29+
django-components==0.136
3030
# via -r requirements-dev.in
3131
djc-core-html-parser==1.0.2
3232
# via django-components

src/djc_pydantic/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
from djc_pydantic.monkeypatch import monkeypatch_pydantic_core_schema
21
from djc_pydantic.extension import PydanticExtension
3-
2+
from djc_pydantic.monkeypatch import monkeypatch_pydantic_core_schema
43

54
monkeypatch_pydantic_core_schema()
65

src/djc_pydantic/extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from django_components import ComponentExtension
22
from django_components.extension import (
3-
OnComponentInputContext,
43
OnComponentDataContext,
4+
OnComponentInputContext,
55
)
66

77
from djc_pydantic.validation import get_component_typing, validate_type

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ deps =
2525
django42: Django>=4.2,<4.3
2626
django50: Django>=5.0,<5.1
2727
django51: Django>=5.1,<5.2
28-
django-components==0.135
28+
django-components>=0.136
2929
pytest
3030
pytest-xdist
3131
pytest-django

0 commit comments

Comments
 (0)