Skip to content

Commit

Permalink
Updated version to 0.2.0.
Browse files Browse the repository at this point in the history
Made dueDate optional on NintexTask model.
  • Loading branch information
lambertjonchris committed Nov 21, 2024
1 parent a9fdee6 commit 3c55c5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nacwrap/data_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class TaskURL(BaseModel):
completionCriteria: str
createdDate: datetime
description: str
dueDate: datetime
dueDate: Optional[datetime] = Field(default=None)
id: str
initiator: str
isAuthenticated: bool
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="nacwrap",
version="0.1.9",
version="0.2.0",
description="Python package that acts as a wrapper for the Nintex Automation Cloud system.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 3c55c5b

Please sign in to comment.