Skip to content

Commit d0abf66

Browse files
authored
Merge pull request #44 from sanders41/date_time
Changed commit_date type in Version to datetime to match the new MeiliSearch type
2 parents f7ff80f + 4d5fda3 commit d0abf66

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from datetime import date
1+
from datetime import datetime
22

33
from camel_converter.pydantic_base import CamelBase
44

55

66
class Version(CamelBase):
77
commit_sha: str
8-
commit_date: date
8+
commit_date: datetime
99
pkg_version: str

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "meilisearch-python-async"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
description = "A Python async client for the MeiliSearch API"
55
authors = ["Paul Sanders <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)