From fbae43856032048e07ae9e6a5f7e174bbebc28d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Santos?= <17305792+adgsantos@users.noreply.github.com> Date: Thu, 12 Jun 2025 13:05:36 +0100 Subject: [PATCH 1/2] recurrence: fix schema --- ntropy_sdk/transactions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ntropy_sdk/transactions.py b/ntropy_sdk/transactions.py index 6366572..5903dff 100644 --- a/ntropy_sdk/transactions.py +++ b/ntropy_sdk/transactions.py @@ -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" From eed98fc104fa30d4709f561b253db6d26c33a435 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Santos?= <17305792+adgsantos@users.noreply.github.com> Date: Thu, 12 Jun 2025 13:11:43 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=205.2.0=20=E2=86=92=205.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ntropy_sdk/__init__.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/ntropy_sdk/__init__.py b/ntropy_sdk/__init__.py index 86539ad..c34be0d 100644 --- a/ntropy_sdk/__init__.py +++ b/ntropy_sdk/__init__.py @@ -1,4 +1,4 @@ -__version__ = "5.2.0" +__version__ = "5.2.1" from typing import TYPE_CHECKING, Optional diff --git a/setup.cfg b/setup.cfg index 1cf2281..0d739a2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.2.0 +current_version = 5.2.1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(rc(?P
\d+))?
@@ -22,4 +22,3 @@ universal = 1
 exclude = docs
 
 [aliases]
-
diff --git a/setup.py b/setup.py
index 299e8c4..b00cf04 100644
--- a/setup.py
+++ b/setup.py
@@ -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,
 )