Skip to content
This repository was archived by the owner on Dec 28, 2017. It is now read-only.

Commit e5c6df0

Browse files
committed
Updated readme and version number
1 parent 503d1ca commit e5c6df0

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ to see if you need to scale your read/write units up or down.
7070
If you encounter any bugs, have questions, or would like to share an idea,
7171
hit up our `issue tracker`_.
7272

73-
.. _Boto: https://github.com/boto/boto
73+
.. _Boto3: https://github.com/boto/boto3
7474
.. _issue tracker: https://github.com/gtaylor/django-dynamodb-sessions/issues
7575

7676
Configuration
@@ -89,15 +89,26 @@ The following settings may be used in your ``settings.py``:
8989
This may lead to slightly slower queries,
9090
but you'll never miss object
9191
creation/edits. Defaults to ``True``.
92+
:DYNAMODB_SESSIONS_BOTO_SESSION: Used instead of providing access_key and
93+
region, the `boto3.session.Session <http://boto3.readthedocs.org/en/latest/reference/core/session.html>`_
94+
containing authentication for the AWS account
95+
to use for DynamoDB.
9296
:DYNAMODB_SESSIONS_AWS_ACCESS_KEY_ID: The access key for the AWS account
9397
to use for DynamoDB.
9498
:DYNAMODB_SESSIONS_AWS_SECRET_ACCESS_KEY: The secret for the AWS account
9599
to use for DynamoDB.
96100
:DYNAMODB_SESSIONS_AWS_REGION_NAME: The region to use for DynamoDB.
97101

102+
98103
Changes
99104
-------
100105

106+
0.7
107+
^^^
108+
109+
* Switch to boto3 rather than boto for AWS access.
110+
* Allow passing of boto3 session rather than AWS credentials.
111+
101112
0.6
102113
^^^
103114

dynamodb_sessions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__author__ = 'gtaylor'
22
# Major, minor
3-
__version__ = (0, 6)
3+
__version__ = (0, 7)

0 commit comments

Comments
 (0)