Skip to content

Commit 9943c53

Browse files
committed
bump version to 1.7.0
1 parent f906d58 commit 9943c53

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [1.7.0] - 2023-11-23
5+
### Added
6+
- approverRepresentative fields
7+
- added extra schedule_validation_call fields
8+
- added disable_free_san
9+
- added request cancel
10+
411
## [1.6.0] - 2017-07-07
512
### Added
613
- Compatability with Xolphin REST Api v1.6.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def read(*paths):
1212

1313
setup(
1414
name='xolphin-api',
15-
version='1.6.0',
15+
version='1.7.0',
1616
author='Xolphin',
1717
author_email='info@xolphin.com',
1818
license='MIT',

xolphin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from __future__ import absolute_import
55

66
__author__ = 'Xolphin'
7-
__version__ = '1.6.0'
7+
__version__ = '1.7.0'
88

99
from .client import Client
1010
#from .errors import TwinglyException

xolphin/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class Client(object):
2020
BASE_URL = 'https://api.xolphin.com/v1/'
2121
BASE_URL_TEST = 'https://test-api.xolphin.com/v1/'
22-
VERSION = '1.6.0'
22+
VERSION = '1.7.0'
2323

2424
def __init__(self, username, password, test = False):
2525

0 commit comments

Comments
 (0)