Skip to content

Commit dc06bce

Browse files
author
Jarrad Lee
committed
Added 2.1.0 release notes.
1 parent b2a568c commit dc06bce

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

RELEASE

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2.1.0 (development)
2+
- updated and improved README
3+
- secret_key refactored to api_key to align with docs and portal
4+
- api_host is now known as rest_endpoint to align with docs and portal
5+
- fixed python3.x bug with bytes vs str in verify_telesign_callback_signature
6+
- various doc string updates and fixes
7+
- removed requests specific config, subclass and customize instead
8+
- added travis CI, codecov coverage and additional unit tests
9+
110
2.0.0
211

312
- Major refactor and simplification into generic REST client.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
version = "2.0.0"
3+
version = "2.1.0"
44

55
try:
66
with open("README") as f:

telesign/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def generate_telesign_headers(customer_id,
8686
Creates the canonicalized string_to_sign and generates the HMAC signature. This is used to authenticate requests
8787
against the TeleSign REST API.
8888
89-
See https://developer.telesign.com/docs/authentication-1 for detailed API documentation.
89+
See https://developer.telesign.com/docs/authentication for detailed API documentation.
9090
9191
:param customer_id: Your account customer_id.
9292
:param api_key: Your account api_key.

0 commit comments

Comments
 (0)