Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ clean-build: ## remove build artifacts
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
find . -name '*.egg' -exec rm -fr {} +

clean-pyc: ## remove Python file artifacts
find . -name '*.pyc' -exec rm -f {} +
Expand Down
2 changes: 1 addition & 1 deletion ntropy_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "5.2.0"
__version__ = "5.3.0"

from typing import TYPE_CHECKING, Optional

Expand Down
3 changes: 3 additions & 0 deletions ntropy_sdk/transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ class Entity(BaseModel):
default=[],
description="A list of [Merchant Category Codes](https://en.wikipedia.org/wiki/Merchant_category_code)",
)
phone_number: Optional[str] = Field(default=None, description="The phone number of the entity")
tax_number: Optional[str] = Field(default=None, description="The tax number of the entity")
naics2017: Optional[str] = Field(default=None, description="The 2017 NAICS code of the entity")


class LocationStructured(BaseModel):
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.2.0
current_version = 5.3.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<pre>\d+))?
Expand All @@ -22,4 +22,3 @@ universal = 1
exclude = docs

[aliases]

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/ntropy-network/ntropy-sdk",
version="5.2.0",
version="5.3.0",
zip_safe=False,
)