From 6242dab63904d0bf5fe4d897cbb08d561b59d23c Mon Sep 17 00:00:00 2001 From: Luciano Resende Date: Tue, 30 Oct 2018 09:09:50 -0700 Subject: [PATCH] Bump version in preparation for 0.3.1 release --- README.rst | 3 +++ yarn_api_client/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index d545427..43afd02 100644 --- a/README.rst +++ b/README.rst @@ -76,6 +76,9 @@ Programmatic interface Changelog ========= +0.3.1 Release + - Fix cluster_application_kill API + 0.3.0 Release - Add support for YARN endpoints protected by Kerberos/SPNEGO - Moved to `requests` package for REST API invocation diff --git a/yarn_api_client/__init__.py b/yarn_api_client/__init__.py index ac4c252..6773c19 100644 --- a/yarn_api_client/__init__.py +++ b/yarn_api_client/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '0.3.0' +__version__ = '0.3.1' __all__ = ['ApplicationMaster', 'HistoryServer', 'NodeManager', 'ResourceManager']