Skip to content

Commit f4f2b3c

Browse files
updating version numbers
1 parent 0363888 commit f4f2b3c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ pip install socketlabs-injectionapi
3030

3131
You can just download the package and install from a local archive file.
3232

33-
> [socketlabs_injectionapi-1.0.1.tar.gz](https://github.com/socketlabs/socketlabs-python/releases/download/1.0.1/socketlabs_injectionapi-1.0.1.tar.gz)
33+
> [socketlabs_injectionapi-1.1.1.tar.gz](https://github.com/socketlabs/socketlabs-python/releases/download/1.1.1/socketlabs_injectionapi-1.1.1.tar.gz)
3434
3535
```
36-
pip install <path>/socketlabs_injectionapi-1.0.1.tar.gz
36+
pip install <path>/socketlabs_injectionapi-1.1.1.tar.gz
3737
```
3838

3939
### From git using pip
@@ -214,6 +214,7 @@ For more information about AMP please see [AMP Project](https://amp.dev/document
214214

215215
<a name="version"></a>
216216
# Version
217+
* 1.1.1 - Adding request timeout value on the client for Http requests
217218
* 1.1.0 - Adds Amp Html Support
218219
* 1.0.0 - Initial Release
219220

python-examples/basic/basic_send_with_proxy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030

3131
# create the client
3232
client = SocketLabsClient(server_id, api_key, proxy)
33-
client.request_timeout = 10
3433

3534
# send the message
3635
response = client.send(message)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
setup(
1111
name="socketlabs_injectionapi",
1212
version=__version__,
13-
author="David Schrenker, Matt Reibach, Ryan Lydzinski",
13+
author="David Schrenker, Matt Reibach, Ryan Lydzinski, Praneeth Chandra",
1414
author_email="[email protected]",
1515
description="SocketLabs Email Delivery Python client library",
1616
long_description=long_description,

socketlabs/injectionapi/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (1, 1, 0)
1+
version_info = (1, 1, 1)
22
__version__ = '.'.join(str(v) for v in version_info)

0 commit comments

Comments
 (0)