Skip to content

Commit 6b54a76

Browse files
Merge pull request #60 from mattsb42-aws/version-import
Version convenience import
2 parents 0213415 + 155d93f commit 6b54a76

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Changelog
33
*********
44

5+
1.0.1 -- 2018-05-02
6+
===================
7+
* Add version convenience import to base namespace.
8+
59
1.0.0 -- 2018-05-02
610
===================
711
* Initial public release

src/dynamodb_encryption_sdk/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
)
1919
from dynamodb_encryption_sdk.encrypted.resource import EncryptedResource
2020
from dynamodb_encryption_sdk.encrypted.table import EncryptedTable
21+
from dynamodb_encryption_sdk.identifiers import __version__
2122

2223
# TableConfiguration
2324
# MaterialDescription
@@ -26,5 +27,6 @@
2627
__all__ = (
2728
'decrypt_dynamodb_item', 'decrypt_python_item',
2829
'encrypt_dynamodb_item', 'encrypt_python_item',
29-
'EncryptedClient', 'EncryptedResource', 'EncryptedTable'
30+
'EncryptedClient', 'EncryptedResource', 'EncryptedTable',
31+
'__version__'
3032
)

src/dynamodb_encryption_sdk/identifiers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from enum import Enum
1515

1616
__all__ = ('LOGGER_NAME', 'CryptoAction', 'EncryptionKeyType', 'KeyEncodingType')
17-
__version__ = '1.0.0'
17+
__version__ = '1.0.1'
1818

1919
LOGGER_NAME = 'dynamodb_encryption_sdk'
2020
USER_AGENT_SUFFIX = 'DynamodbEncryptionSdkPython/{}'.format(__version__)

0 commit comments

Comments
 (0)