Skip to content

Commit

Permalink
Bump version in preparation for 0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lresende committed Sep 22, 2018
1 parent 06c1799 commit e017dcf
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
30 changes: 23 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
hadoop-yarn-api-python-client
=============================

Python client for Hadoop® YARN API

.. image:: https://coveralls.io/repos/toidi/hadoop-yarn-api-python-client/badge.png
:target: https://coveralls.io/r/toidi/hadoop-yarn-api-python-client
:alt: Test coverage
Python client for Apache Hadoop® YARN API

.. image:: https://img.shields.io/pypi/v/yarn-api-client.svg
:target: https://pypi.python.org/pypi/yarn-api-client/
Expand All @@ -16,6 +12,14 @@ Python client for Hadoop® YARN API
:target: https://travis-ci.org/toidi/hadoop-yarn-api-python-client
:alt: Travis CI build status

.. image:: http://readthedocs.org/projects/python-client-for-hadoop-yarn-api/badge/?version=latest
:target: https://python-client-for-hadoop-yarn-api.readthedocs.org/en/latest/?badge=latest
:alt: Latest documentation status

.. image:: https://coveralls.io/repos/toidi/hadoop-yarn-api-python-client/badge.png
:target: https://coveralls.io/r/toidi/hadoop-yarn-api-python-client
:alt: Test coverage

Package documentation: python-client-for-hadoop-yarn-api.readthedocs.org_

REST API documentation: hadoop.apache.org_
Expand All @@ -30,6 +34,11 @@ From PyPI

pip install yarn-api-client

From Anaconda (conda forge)

::

conda install -c conda-forge yarn-api-client

From source code

Expand Down Expand Up @@ -67,9 +76,16 @@ Programmatic interface
Changelog
=========

0.2.5 - Fixed History REST API
0.3.0 Release
- Add support for YARN endpoints protected by Kerberos/SPNEGO
- Moved to `requests` package for REST API invocation
- Remove `http_con` property, as connections are now managed by `requests` package

0.2.5 Release
- Fixed History REST API

0.2.4 - Added compatibility with HA enabled Resource Manager
0.2.4 Release
- Added compatibility with HA enabled Resource Manager

.. _python-client-for-hadoop-yarn-api.readthedocs.org: http://python-client-for-hadoop-yarn-api.readthedocs.org/en/latest/
.. _hadoop.apache.org: http://hadoop.apache.org/docs/stable/hadoop-yarn/hadoop-yarn-site/WebServicesIntro.html
2 changes: 1 addition & 1 deletion yarn_api_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = '0.2.5'
__version__ = '0.3.0'
__all__ = ['ApplicationMaster', 'HistoryServer', 'NodeManager',
'ResourceManager']

Expand Down

0 comments on commit e017dcf

Please sign in to comment.