Skip to content

Commit 4171822

Browse files
Merge pull request #146 from ns1/fix/update-version
Update version
2 parents bbad1a0 + 0056250 commit 4171822

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.27.2 (February 10th, 2026)
2+
3+
ENHANCEMENTS:
4+
* Adds support for monitoring
5+
16
## 0.27.1 (December 3rd, 2025)
27

38
FIXED:

ns1/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
from .config import Config
77

8-
version = "0.27.1"
8+
version = "0.27.2"
99

1010

1111
class NS1:

ns1/rest/monitoring.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,14 @@ class Monitors(resource.BaseResource):
2020
"notify_list",
2121
]
2222

23-
INT_FIELDS = [
24-
"frequency",
25-
"notify_delay",
26-
"notify_repeat"
27-
]
23+
INT_FIELDS = ["frequency", "notify_delay", "notify_repeat"]
2824

2925
BOOL_FIELDS = [
3026
"active",
3127
"rapid_recheck",
3228
"notify_regional",
3329
"mute",
34-
"notify_failback"
30+
"notify_failback",
3531
]
3632

3733
def list(self, callback=None, errback=None):

0 commit comments

Comments
 (0)