Skip to content

Commit 10e3a91

Browse files
version update
1 parent cd314ad commit 10e3a91

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Diff for: README.md

+6-2
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.1.1.tar.gz](https://github.com/socketlabs/socketlabs-python/releases/download/1.1.1/socketlabs_injectionapi-1.1.1.tar.gz)
33+
> [socketlabs_injectionapi-1.2.1.tar.gz](https://github.com/socketlabs/socketlabs-python/releases/download/1.2python setup.py sdist bdist_wheel.1/socketlabs_injectionapi-1.2.1.tar.gz)
3434
3535
```
36-
pip install <path>/socketlabs_injectionapi-1.1.1.tar.gz
36+
pip install <path>/socketlabs_injectionapi-1.2.1.tar.gz
3737
```
3838

3939
### From git using pip
@@ -170,6 +170,9 @@ This example demonstrates how to add custom headers to your email message.
170170
### [Basic send with a web proxy](https://github.com/socketlabs/socketlabs-python/blob/master/python-examples/basic/basic_send_with_proxy.py)
171171
This example demonstrates how to use a proxy with your HTTP client.
172172

173+
### [Basic send with retry enabled](https://github.com/socketlabs/socketlabs-python/blob/master/python-examples/basic/basic_send_with_retry.py)
174+
This example demonstrates how to use the retry logic with your HTTP client.
175+
173176
### [Basic send async example](https://github.com/socketlabs/socketlabs-python/blob/master/python-examples/basic/basic_async.py)
174177
Basic send async example
175178

@@ -214,6 +217,7 @@ For more information about AMP please see [AMP Project](https://amp.dev/document
214217

215218
<a name="version"></a>
216219
# Version
220+
* 1.2.1 - Adding optional retry logic for Http requests. If configured, the request will retry when certain 500 errors occur (500, 502, 503, 504)
217221
* 1.1.1 - Adding request timeout value on the client for Http requests
218222
* 1.1.0 - Adds Amp Html Support
219223
* 1.0.0 - Initial Release

Diff for: socketlabs/injectionapi/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (1, 1, 1)
1+
version_info = (1, 2, 1)
22
__version__ = '.'.join(str(v) for v in version_info)

0 commit comments

Comments
 (0)