Skip to content

Commit a6a0bc4

Browse files
committed
bump version number with Changelog
1 parent dc27dc3 commit a6a0bc4

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
CHANGELOG
33
=========
44

5+
0.95
6+
====
7+
* **Breaking**: AWS API parameter whitelist json file is moved to path `aws_xray_sdk/ext/resources/aws_para_whitelist.json` in `PR6 <https://github.com/aws/aws-xray-sdk-python/pull/6>`_.
8+
* Added aiobotocore/aioboto3 support and async function capture. `PR6 <https://github.com/aws/aws-xray-sdk-python/pull/6>`_
9+
* Added logic to removing segment/subsegment name invalid characters. `PR9 <https://github.com/aws/aws-xray-sdk-python/pull/9>`_
10+
* Temporarily disabled tests run on Django2.0. `PR10 <https://github.com/aws/aws-xray-sdk-python/pull/10>`_
11+
* Code cleanup. `PR11 <https://github.com/aws/aws-xray-sdk-python/pull/11>`_
12+
513
0.94
614
====
715
* Added aiohttp support. `PR3 <https://github.com/aws/aws-xray-sdk-python/pull/3>`_

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = u'0.93'
60+
version = u'0.95'
6161
# The full version, including alpha/beta/rc tags.
62-
release = u'0.93'
62+
release = u'0.95'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

docs/thirdparty.rst

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
Third Party Library Support
44
===========================
55

6+
Patching Supported Libraries
7+
----------------------------
8+
69
The SDK supports aioboto3, aiobotocore, boto3, botocore, requests, sqlite3 and mysql-connector.
710

811
To patch, use code like the following in the main app::
@@ -34,6 +37,9 @@ The following modules are availble to patch::
3437

3538
Patching boto3 and botocore are equivalent since boto3 depends on botocore
3639

40+
Patching mysql
41+
----------------------------
42+
3743
For mysql, only the mysql-connector module is supported and you have to use
3844
code like the following to generate a subsegment for an SQL query::
3945

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='aws-xray-sdk',
12-
version='0.94',
12+
version='0.95',
1313

1414
description='The AWS X-Ray SDK for Python (the SDK) enables Python developers to record'
1515
' and emit information from within their applications to the AWS X-Ray service.',

0 commit comments

Comments
 (0)