Skip to content

Commit e017dcf

Browse files
committed
Bump version in preparation for 0.3.0 release
1 parent 06c1799 commit e017dcf

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

README.rst

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22
hadoop-yarn-api-python-client
33
=============================
44

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

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

15+
.. image:: http://readthedocs.org/projects/python-client-for-hadoop-yarn-api/badge/?version=latest
16+
:target: https://python-client-for-hadoop-yarn-api.readthedocs.org/en/latest/?badge=latest
17+
:alt: Latest documentation status
18+
19+
.. image:: https://coveralls.io/repos/toidi/hadoop-yarn-api-python-client/badge.png
20+
:target: https://coveralls.io/r/toidi/hadoop-yarn-api-python-client
21+
:alt: Test coverage
22+
1923
Package documentation: python-client-for-hadoop-yarn-api.readthedocs.org_
2024

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

3135
pip install yarn-api-client
3236

37+
From Anaconda (conda forge)
38+
39+
::
40+
41+
conda install -c conda-forge yarn-api-client
3342

3443
From source code
3544

@@ -67,9 +76,16 @@ Programmatic interface
6776
Changelog
6877
=========
6978

70-
0.2.5 - Fixed History REST API
79+
0.3.0 Release
80+
- Add support for YARN endpoints protected by Kerberos/SPNEGO
81+
- Moved to `requests` package for REST API invocation
82+
- Remove `http_con` property, as connections are now managed by `requests` package
83+
84+
0.2.5 Release
85+
- Fixed History REST API
7186

72-
0.2.4 - Added compatibility with HA enabled Resource Manager
87+
0.2.4 Release
88+
- Added compatibility with HA enabled Resource Manager
7389

7490
.. _python-client-for-hadoop-yarn-api.readthedocs.org: http://python-client-for-hadoop-yarn-api.readthedocs.org/en/latest/
7591
.. _hadoop.apache.org: http://hadoop.apache.org/docs/stable/hadoop-yarn/hadoop-yarn-site/WebServicesIntro.html

yarn_api_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '0.2.5'
2+
__version__ = '0.3.0'
33
__all__ = ['ApplicationMaster', 'HistoryServer', 'NodeManager',
44
'ResourceManager']
55

0 commit comments

Comments
 (0)