Skip to content

Commit 26e0b8c

Browse files
committed
Update model.py to correct field assignment and bump version to 1.2.3
1 parent b0b8089 commit 26e0b8c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "datacontract-specification"
3-
version = "1.2.2" # in sync with spec
3+
version = "1.2.3" # in sync with spec
44
description = "The Pydantic Model of the Data Contract Specification"
55
readme = "README.md"
66
authors = [

src/datacontract_specification/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ class Quality(pyd.BaseModel):
186186
mustBeGreaterOrEqualTo: float | int | None = None
187187
mustBeLessThan: float | int | None = None
188188
mustBeLessOrEqualTo: float | int | None = None
189-
mustBeGreaterThanOrEqualTo: float | int | None = pyd.Field(
189+
mustBeLessThanOrEqualTo: float | int | None = pyd.Field(
190190
default=None,
191191
deprecated="Removed in Data Contract Specification v1.2.1. Use mustBeLessOrEqualTo instead.",
192192
)

0 commit comments

Comments
 (0)