Skip to content

Commit

Permalink
bump version number with Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
haotianw465 committed Dec 12, 2017
1 parent dc27dc3 commit a6a0bc4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
CHANGELOG
=========

0.95
====
* **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>`_.
* Added aiobotocore/aioboto3 support and async function capture. `PR6 <https://github.com/aws/aws-xray-sdk-python/pull/6>`_
* Added logic to removing segment/subsegment name invalid characters. `PR9 <https://github.com/aws/aws-xray-sdk-python/pull/9>`_
* Temporarily disabled tests run on Django2.0. `PR10 <https://github.com/aws/aws-xray-sdk-python/pull/10>`_
* Code cleanup. `PR11 <https://github.com/aws/aws-xray-sdk-python/pull/11>`_

0.94
====
* Added aiohttp support. `PR3 <https://github.com/aws/aws-xray-sdk-python/pull/3>`_
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.93'
version = u'0.95'
# The full version, including alpha/beta/rc tags.
release = u'0.93'
release = u'0.95'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 6 additions & 0 deletions docs/thirdparty.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Third Party Library Support
===========================

Patching Supported Libraries
----------------------------

The SDK supports aioboto3, aiobotocore, boto3, botocore, requests, sqlite3 and mysql-connector.

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

Patching boto3 and botocore are equivalent since boto3 depends on botocore

Patching mysql
----------------------------

For mysql, only the mysql-connector module is supported and you have to use
code like the following to generate a subsegment for an SQL query::

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='aws-xray-sdk',
version='0.94',
version='0.95',

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

0 comments on commit a6a0bc4

Please sign in to comment.