Skip to content
Open
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 ntropy_sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "5.2.0"
__version__ = "5.2.1"

from typing import TYPE_CHECKING, Optional

Expand Down
6 changes: 3 additions & 3 deletions ntropy_sdk/transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,11 @@ class RecurrenceType(str, enum.Enum):
class RecurrencePeriodicity(str, enum.Enum):
daily = "daily"
weekly = "weekly"
bi_weekly = "bi_weekly"
bi_weekly = "bi-weekly"
monthly = "monthly"
bi_monthly = "bi_monthly"
bi_monthly = "bi-monthly"
quarterly = "quarterly"
semi_yearly = "semi_yearly"
semi_yearly = "semi-yearly"
yearly = "yearly"
other = "other"

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.2.1
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.2.1",
zip_safe=False,
)