Skip to content

Commit

Permalink
Version bump to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
simw committed Nov 5, 2024
1 parent 99f1048 commit 250e6ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pydantic_to_pyarrow"
version = "0.1.3"
version = "0.1.4"
description = "Conversion from pydantic models to pyarrow schemas"
authors = ["Simon Wicks <simw@users.noreply.github.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/pydantic_to_pyarrow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .schema import SchemaCreationError, get_pyarrow_schema

__version__ = "0.1.3"
__version__ = "0.1.4"

__all__ = [
"__version__",
Expand Down
2 changes: 1 addition & 1 deletion src/pydantic_to_pyarrow/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def get_pyarrow_schema(
when converting datetime fields. Defaults to False.
exclude_fields (bool, optional): If True, will exclude fields in the pydantic
model that have `Field(exclude=True)`. Defaults to False.
by_alis (bool, optional): If True, will create the pyarrow schema using the
by_alias (bool, optional): If True, will create the pyarrow schema using the
(serialization) alias in the pydantic model. Defaults to False.
Returns:
Expand Down

0 comments on commit 250e6ab

Please # to comment.