Skip to content

Commit e9e0f54

Browse files
authored
Merge pull request #48 from DrGFreeman/47-version-1.2.1
Version 1.2.1 release
2 parents 8950cf8 + 7782324 commit e9e0f54

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## Version 1.2.1
2+
3+
### Fixes
4+
5+
* Fix typo in `transactions.put_items` unprocessed items key (issue #42, PR #45).
6+
* Fix handling of unprocessed items in `transactions.put_items` (issue #44, PR #45).
7+
* Fix handling of unprocessed keys in `transactions.get_items` (issue #46, PR #45).
8+
9+
### Other changes
10+
11+
* Add unit testing of unprocessed items/keys in `transactions.put_items` and `transactions.get_items` (issue #43, PR #45).
12+
* Add missing lines to coverage report in tox config (PR #45).
13+
14+
## Version 1.2.0
15+
16+
### New Features
17+
18+
* Add the `attributes` parameter to the `get_df`, `transactions.get_item`, `transactions.get_items` and `transactions.get_all_items` functions. (issue #39, PR #40)
19+
20+
21+
## Version 1.1.1
22+
23+
### Fixes
24+
25+
* Fix version number which was not updated in version 1.1.0.
26+
27+
28+
## Version 1.1.0
29+
30+
### Modified Features
31+
32+
* Set `boto3` as an optional requirement to avoid unnecessary installation in lambda layers (issue #35, PR #36).

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = "Julien de la Bruère-Terreault"
2525

2626
# The full version, including alpha/beta/rc tags
27-
release = "1.2.0"
27+
release = "1.2.1"
2828

2929

3030
# -- General configuration ---------------------------------------------------

dynamo_pandas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
from .dynamo_pandas import keys
33
from .dynamo_pandas import put_df
44

5-
__version__ = "1.2.0"
5+
__version__ = "1.2.1"
66

77
__all__ = ["get_df", "keys", "put_df", "__version__"]

0 commit comments

Comments
 (0)