Skip to content

Commit a4d2414

Browse files
authored
Merge pull request #61 from mattsb42-aws/manifest
Fix MANIFEST.in
2 parents 6b54a76 + 5e86602 commit a4d2414

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
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.2 -- 2018-05-03
6+
===================
7+
* Fill out ``MANIFEST.in`` to correctly include necessary files in source build.
8+
59
1.0.1 -- 2018-05-02
610
===================
711
* Add version convenience import to base namespace.

MANIFEST.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
include README.rst
2+
include CHANGELOG.rst
3+
include LICENSE
4+
include requirements.txt
5+
6+
recursive-include doc *
7+
recursive-include test *.py

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.1'
17+
__version__ = '1.0.2'
1818

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

0 commit comments

Comments
 (0)