From 60f8fc9fb2f136db50a4f1f055d147ca8cb9d007 Mon Sep 17 00:00:00 2001 From: "Pfifer, Justin" Date: Fri, 18 Nov 2016 08:25:58 -0800 Subject: [PATCH] Release 1.4.1 of the Amazon Kinesis Client Library for Python * Installation of the library into a virtual environment on macOS, and Windows now correctly downloads the jar files. * Fixes [Issue #33](https://github.com/awslabs/amazon-kinesis-client-python/issues/33) --- README.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 348c314..6422bfb 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,10 @@ all languages. * The [Amazon Kinesis Forum][kinesis-forum] ## Release Notes +### Release 1.4.1 (November 18, 2016) +* Installation of the library into a virtual environment on macOS, and Windows now correctly downloads the jar files. + * Fixes [Issue #33](https://github.com/awslabs/amazon-kinesis-client-python/issues/33) + ### Release 1.4.0 (November 9, 2016) * Added a new v2 record processor class that allows access to updated features. * Record processor initialization diff --git a/setup.py b/setup.py index 7db1ede..a802c1a 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ PACKAGE_NAME = 'amazon_kclpy' JAR_DIRECTORY = os.path.join(PACKAGE_NAME, 'jars') -PACKAGE_VERSION = '1.4.0' +PACKAGE_VERSION = '1.4.1' PYTHON_REQUIREMENTS = [ 'boto', # argparse is part of python2.7 but must be declared for python2.6