Skip to content

Release 2.0.6 #152

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ all languages.

## Release Notes

### Release 2.0.6 (November 23, 2021)
* Upgraded multiple dependencies [PR #152](https://github.com/awslabs/amazon-kinesis-client-python/pull/152)
* Amazon Kinesis Client Library 2.3.9
* ch.qos.logback 1.2.7

### Release 2.0.5 (November 11, 2021)
* Upgraded multiple dependencies [PR #148](https://github.com/awslabs/amazon-kinesis-client-python/pull/148)
* Amazon Kinesis Client Library 2.3.8
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

PACKAGE_NAME = 'amazon_kclpy'
JAR_DIRECTORY = os.path.join(PACKAGE_NAME, 'jars')
PACKAGE_VERSION = '2.0.5'
PACKAGE_VERSION = '2.0.6'
PYTHON_REQUIREMENTS = [
'boto',
# argparse is part of python2.7 but must be declared for python2.6
Expand Down Expand Up @@ -73,8 +73,8 @@
('software.amazon.eventstream', 'eventstream', '1.0.1'),
('software.amazon.ion', 'ion-java', '1.5.1'),
('software.amazon.glue', 'schema-registry-serde', '1.1.5'),
('software.amazon.kinesis', 'amazon-kinesis-client-multilang', '2.3.8'),
('software.amazon.kinesis', 'amazon-kinesis-client', '2.3.8'),
('software.amazon.kinesis', 'amazon-kinesis-client-multilang', '2.3.9'),
('software.amazon.kinesis', 'amazon-kinesis-client', '2.3.9'),
('com.amazonaws', 'aws-java-sdk-core', '1.12.3'),
('com.amazonaws', 'aws-java-sdk-sts', '1.12.3'),
('com.amazonaws', 'jmespath-java', '1.12.3'),
Expand Down Expand Up @@ -114,8 +114,8 @@
('commons-collections', 'commons-collections', '3.2.2'),
('commons-io', 'commons-io', '2.9.0'),
('commons-logging', 'commons-logging', '1.2'),
('ch.qos.logback', 'logback-classic', '1.2.3'),
('ch.qos.logback', 'logback-core', '1.2.3'),
('ch.qos.logback', 'logback-classic', '1.2.7'),
('ch.qos.logback', 'logback-core', '1.2.7'),
('joda-time', 'joda-time', '2.10.10')
]

Expand Down